]> git.openstreetmap.org Git - rails.git/blobdiff - test/application_system_test_case.rb
Update leaflet-osm to latest upstream version
[rails.git] / test / application_system_test_case.rb
index b170e74b1aa75e1273aa02c20e418beac20e31fd..0ddb8a87ad73f91606df90af224df851c9919c06 100644 (file)
@@ -24,7 +24,25 @@ 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
+
+  def within_content_body(&)
+    within("#content > .content-body", &)
   end
 end