X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/7406ae5dcc9cbb177a8ea33085af9caf6e3ebb1b..123c7d10a5e798e2379dfb04df4a22b1deface3c:/test/application_system_test_case.rb diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb index b170e74b1..d2c3d5196 100644 --- a/test/application_system_test_case.rb +++ b/test/application_system_test_case.rb @@ -24,7 +24,21 @@ class ApplicationSystemTestCase < ActionDispatch::SystemTestCase private - def within_sidebar(&block) - within "#sidebar_content", &block + 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 "Log in" + end + end + + def sign_out + visit logout_path + click_on "Logout", :match => :first + end + + def within_sidebar(&) + within("#sidebar_content", &) end end