]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
Merge branch 'master' into moderation
[rails.git] / test / test_helper.rb
index 70f69a3ae94a590140eebd1a97fa15f46437775c..552bda7d538c02af9e24509f138cd4152d87c0da 100644 (file)
@@ -5,6 +5,7 @@ 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
@@ -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