]> git.openstreetmap.org Git - rails.git/blobdiff - test/application_system_test_case.rb
Move system test specific sign in to system test superclass
[rails.git] / test / application_system_test_case.rb
index b170e74b1aa75e1273aa02c20e418beac20e31fd..7931546d403028e755d1aaa6af6abb89a0e76f77 100644 (file)
@@ -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