]> git.openstreetmap.org Git - rails.git/blobdiff - test/controllers/site_controller_test.rb
Use 'def setup' instead of 'setup do', for consistency
[rails.git] / test / controllers / site_controller_test.rb
index 453af4550bb25fa58bdba42d313ebf700ccf0b9f..afa50a35696a2acfee56caceca4ab64b1dbdb08b 100644 (file)
@@ -8,6 +8,8 @@ class SiteControllerTest < ActionController::TestCase
   def setup
     Object.const_set("ID_KEY", client_applications(:oauth_web_app).key)
     Object.const_set("POTLATCH2_KEY", client_applications(:oauth_web_app).key)
+
+    stub_signup_requests
   end
 
   ##
@@ -265,7 +267,9 @@ class SiteControllerTest < ActionController::TestCase
   # Test editing a specific note
   def test_edit_with_note
     user = users(:public_user)
-    note = notes(:open_note)
+    note = create(:note) do |n|
+      n.comments.create(:author_id => user.id)
+    end
 
     get :edit, { :note => note.id }, { :user => user.id }
     assert_response :success