]> git.openstreetmap.org Git - rails.git/commitdiff
Move system test specific sign in to system test superclass
authorAnton Khorev <tony29@yandex.ru>
Sat, 10 Feb 2024 14:26:57 +0000 (17:26 +0300)
committerAnton Khorev <tony29@yandex.ru>
Sat, 10 Feb 2024 14:26:57 +0000 (17:26 +0300)
test/application_system_test_case.rb
test/test_helper.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
index e1bc91917deababfa3aa597fcdc599d08008e356..60edf6e0c25a56caabe8a2bbb193b10d304fd86f 100644 (file)
@@ -242,15 +242,6 @@ module ActiveSupport
       end
     end
 
-    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 session_for(user)
       get login_path
       post login_path, :params => { :username => user.display_name, :password => "test" }