X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/44d9b77f7a2f48c6cea251b5e97a775598dee4fc..68431bde1ac127804a1375db3c12f24c38926a18:/test/application_system_test_case.rb?ds=sidebyside

diff --git a/test/application_system_test_case.rb b/test/application_system_test_case.rb
index b170e74b1..63c8090a8 100644
--- a/test/application_system_test_case.rb
+++ b/test/application_system_test_case.rb
@@ -24,6 +24,20 @@ 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 "Log in"
+    end
+  end
+
+  def sign_out
+    visit logout_path
+    click_on "Logout", :match => :first
+  end
+
   def within_sidebar(&block)
     within "#sidebar_content", &block
   end