X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/10fdeb2021af554ee818ab6a47e06700f78f68c1..d5a6efca7f5c9c2bb16c85e4f01e44f30739dd2a:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index b32dd0a79..5dd319e02 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -130,5 +130,11 @@ class Test::Unit::TestCase assert_equal @response.headers['Error'], "You must make your edits public to upload new data", "Wrong error message" end + # Not sure this is the best response we could give + def assert_inactive_user(msg = "an inactive user shouldn't be able to access the API") + assert_response :unauthorized, msg + #assert_equal @response.headers['Error'], "" + end + # Add more helper methods to be used by all tests here... end