]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/diary_comment_test.rb
Rework DiaryEntry and DiaryComment model tests to use factories.
[rails.git] / test / models / diary_comment_test.rb
index e96c122300c99ad9a01114965f36e1067b88c744..13d035ce7096800096dd5773dd9a30ec891243e0 100644 (file)
@@ -1,10 +1,8 @@
-require 'test_helper'
+require "test_helper"
 
 class DiaryCommentTest < ActiveSupport::TestCase
-  api_fixtures
-  fixtures :diary_comments
-  
   def test_diary_comment_count
-    assert_equal 4, DiaryComment.count
+    comment = create(:diary_comment)
+    assert_includes DiaryComment.all, comment
   end
 end