require "test_helper"

class UserLoginTest < ActionDispatch::IntegrationTest
  test "can see the login page" do
    get login_path
    assert_select 'form[action=?][method="post"]', login_path, true
    assert_response :success
  end
end
