Sprankelprachtig aan/afmeldsysteem

authentication_controller_test.rb 435B

12345678910111213141516171819
  1. require 'test_helper'
  2. class AuthenticationControllerTest < ActionDispatch::IntegrationTest
  3. test "should get login" do
  4. get authentication_login_url
  5. assert_response :success
  6. end
  7. test "should get create_password" do
  8. get authentication_create_password_url
  9. assert_response :success
  10. end
  11. test "should get forgotten_password" do
  12. get authentication_forgotten_password_url
  13. assert_response :success
  14. end
  15. end