mirror of
https://github.com/ryankazokas/turbovault-app.git
synced 2026-04-16 21:02:52 +00:00
19 lines
367 B
Ruby
19 lines
367 B
Ruby
require "test_helper"
|
|
|
|
class SessionsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get new" do
|
|
get sessions_new_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get create" do
|
|
get sessions_create_url
|
|
assert_response :success
|
|
end
|
|
|
|
test "should get destroy" do
|
|
get sessions_destroy_url
|
|
assert_response :success
|
|
end
|
|
end
|