X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/c3498b490b7e695f0be0898e3df76961bda4738e..d4aa257524575b3baa454d69733a614f22485746:/test/application_system_test_case.rb?ds=inline diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb index b170e74b1..7931546d4 100644 --- a/test/application_system_test_case.rb +++ b/test/application_system_test_case.rb @@ -24,6 +24,15 @@ class ApplicationSystemTestCase < ActionDispatch::SystemTestCase private + def sign_in_as(user) + visit login_path + within "form", :text => "Email Address or Username" do + fill_in "username", :with => user.email + fill_in "password", :with => "test" + click_on "Login" + end + end + def within_sidebar(&block) within "#sidebar_content", &block end