X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/8f1676b71ae32eca2706b582f65bcefec2285976..effb1b7f4170bb7244c4dfffcbe6134fe00e2bc4:/test/test_helper.rb diff --git a/test/test_helper.rb b/test/test_helper.rb index 70f69a3ae..552bda7d5 100644 --- a/test/test_helper.rb +++ b/test/test_helper.rb @@ -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