X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/edaddbedaec78a252e988e2271962407e64483fd..55cc2e0fcf1fd1151736ad24ed6e89f5b887b2c3:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index 97c749000..6a618c8d3 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -71,6 +71,8 @@ class ActiveSupport::TestCase set_fixture_class :gpx_files => 'Trace' set_fixture_class :gps_points => 'Tracepoint' set_fixture_class :gpx_file_tags => 'Tracetag' + + fixtures :client_applications end ## @@ -119,6 +121,10 @@ class ActiveSupport::TestCase @request.env["HTTP_AUTHORIZATION"] = "Basic %s" % Base64.encode64("#{user}:#{pass}") end + def error_format(format) + @request.env["HTTP_X_ERROR_FORMAT"] = format + end + def content(c) @request.env["RAW_POST_DATA"] = c.to_s end