]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
Merge branch 'master' into moderation
[rails.git] / test / test_helper.rb
index d41a369f88ebb3eaf6f5d0d1cfc3fabc1a967800..552bda7d538c02af9e24509f138cd4152d87c0da 100644 (file)
@@ -5,10 +5,11 @@ ENV["RAILS_ENV"] = "test"
 require File.expand_path("../../config/environment", __FILE__)
 require "rails/test_help"
 require "webmock/minitest"
+require "minitest/rails/capybara"
 
 module ActiveSupport
   class TestCase
-    include FactoryGirl::Syntax::Methods
+    include FactoryBot::Syntax::Methods
 
     ##
     # takes a block which is executed in the context of a different
@@ -150,5 +151,13 @@ module ActiveSupport
         end
       end
     end
+
+    def sign_in_as(user)
+      stub_hostip_requests
+      visit login_path
+      fill_in "username", :with => user.email
+      fill_in "password", :with => "test"
+      click_on "Login", :match => :first
+    end
   end
 end