sessions_controller_test.rb 172 B

123456789
  1. require 'test_helper'
  2. class SessionsControllerTest < ActionDispatch::IntegrationTest
  3. test "should get new" do
  4. get login_path
  5. assert_response :success
  6. end
  7. end