X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/3795da40149962e77d88dc3d88ba7c400005718a..899fc66a62b036adcfd59f5da80c7fc6f30cd3a8:/test/integration/user_terms_seen_test.rb diff --git a/test/integration/user_terms_seen_test.rb b/test/integration/user_terms_seen_test.rb index 33a6950ee..32fdba0b2 100644 --- a/test/integration/user_terms_seen_test.rb +++ b/test/integration/user_terms_seen_test.rb @@ -6,21 +6,21 @@ class UserTermsSeenTest < ActionDispatch::IntegrationTest end def test_api_blocked - user = create(:user, :terms_seen => false) + user = create(:user, :terms_seen => false, :terms_agreed => nil) - get "/api/#{API_VERSION}/user/preferences", :headers => auth_header(user.display_name, "test") + get "/api/#{Settings.api_version}/user/preferences", :headers => auth_header(user.display_name, "test") assert_response :forbidden # touch it so that the user has seen the terms user.terms_seen = true user.save - get "/api/#{API_VERSION}/user/preferences", :headers => auth_header(user.display_name, "test") + get "/api/#{Settings.api_version}/user/preferences", :headers => auth_header(user.display_name, "test") assert_response :success end def test_terms_presented_at_login - user = create(:user, :terms_seen => false) + user = create(:user, :terms_seen => false, :terms_agreed => nil) # try to log in get "/login" @@ -45,7 +45,7 @@ class UserTermsSeenTest < ActionDispatch::IntegrationTest end def test_terms_cant_be_circumvented - user = create(:user, :terms_seen => false) + user = create(:user, :terms_seen => false, :terms_agreed => nil) # try to log in get "/login"