]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
add banner for this year's FOSSGIS conference
[rails.git] / test / test_helper.rb
index d41a369f88ebb3eaf6f5d0d1cfc3fabc1a967800..c9ec46dcf41cf1b78c9cab334b8027dde167aa0e 100644 (file)
@@ -8,7 +8,7 @@ require "webmock/minitest"
 
 module ActiveSupport
   class TestCase
-    include FactoryGirl::Syntax::Methods
+    include FactoryBot::Syntax::Methods
 
     ##
     # takes a block which is executed in the context of a different
@@ -82,7 +82,7 @@ module ActiveSupport
     ##
     # set request headers for HTTP basic authentication
     def basic_authorization(user, pass)
-      @request.env["HTTP_AUTHORIZATION"] = format("Basic %s", Base64.encode64("#{user}:#{pass}"))
+      @request.env["HTTP_AUTHORIZATION"] = format("Basic %{auth}", :auth => Base64.encode64("#{user}:#{pass}"))
     end
 
     ##