]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
Move system test specific sign in to system test superclass
[rails.git] / test / test_helper.rb
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" }