]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
Change /index.php/ in wiki.openstreetmap.org links to /wiki/. This looks nicer
[rails.git] / test / test_helper.rb
index b32dd0a797f880fdbb28ba9887120580f569f119..95b6e7e6766ba669c6451c5da9e5397d765651fe 100644 (file)
@@ -123,6 +123,10 @@ class Test::Unit::TestCase
     @request.env["RAW_POST_DATA"] = c.to_s
   end
   
+  def set_locale(l)
+    @request.env["HTTP_ACCEPT_LANGUAGE"] = l.to_s
+  end
+  
   # Used to check that the error header and the forbidden responses are given
   # when the owner of the changset has their data not marked as public
   def assert_require_public_data(msg = "Shouldn't be able to use API when the user's data is not public")
@@ -130,5 +134,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