]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/diary_comment_test.rb
Update name of test
[rails.git] / test / models / diary_comment_test.rb
index e96c122300c99ad9a01114965f36e1067b88c744..908c79bfa6cc85c79e58eb37d8342a533d493024 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
+  def test_diary_comment_exists
+    comment = create(:diary_comment)
+    assert_includes DiaryComment.all, comment
   end
 end