]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/diary_comment_test.rb
Merge remote-tracking branch 'openstreetmap/pull/1332'
[rails.git] / test / models / diary_comment_test.rb
index a32c153f9a7eac6784e33100a7468836affbe8bb..aeb054a02536a05d6f02d077b0366da380065aff 100644 (file)
@@ -1,10 +1,11 @@
 require "test_helper"
 
 class DiaryCommentTest < ActiveSupport::TestCase
-  api_fixtures
-  fixtures :diary_comments
+  fixtures :users, :languages
 
-  def test_diary_comment_count
-    assert_equal 4, DiaryComment.count
+  test "body must be present" do
+    comment = build(:diary_comment, :body => "")
+    assert_not comment.valid?
+    assert_not_nil comment.errors[:body], "no validation error for missing body"
   end
 end