9 lines
171 B
Ruby
9 lines
171 B
Ruby
require "test_helper"
|
|
|
|
class SessionsControllerTest < ActionDispatch::IntegrationTest
|
|
test "should get new" do
|
|
get login_path
|
|
assert_response :success
|
|
end
|
|
end
|