]> git.openstreetmap.org Git - rails.git/blobdiff - test/test_helper.rb
Remove unused POST method for message replies
[rails.git] / test / test_helper.rb
index 385a2f6825d0d9ea27baae625791d3b6a55e5067..7198519a75f4829c88e36da2add6de413a2aa6f0 100644 (file)
@@ -150,5 +150,13 @@ module ActiveSupport
         end
       end
     end
+
+    def sign_in_as(user)
+      stub_hostip_requests
+      visit login_path
+      fill_in "username", :with => user.email
+      fill_in "password", :with => "test"
+      click_on "Login", :match => :first
+    end
   end
 end