]> git.openstreetmap.org Git - rails.git/blobdiff - test/controllers/site_controller_test.rb
Add a note_with_comments factory
[rails.git] / test / controllers / site_controller_test.rb
index f385ccff0bfe601d659cc4faee20da99c06c4c7a..70eacb3aa9bbb6868b57e8528658fa7201e97874 100644 (file)
@@ -265,8 +265,9 @@ class SiteControllerTest < ActionController::TestCase
   # Test editing a specific note
   def test_edit_with_note
     user = users(:public_user)
-    note = create(:note)
-    create(:note_comment, :author_id => user.id)
+    note = create(:note) do |n|
+      n.comments.create(:author_id => user.id)
+    end
 
     get :edit, { :note => note.id }, { :user => user.id }
     assert_response :success