]> git.openstreetmap.org Git - rails.git/blobdiff - test/models/diary_comment_test.rb
Use 'def setup' instead of 'setup do', for consistency
[rails.git] / test / models / diary_comment_test.rb
index bf778c27ac5c7873abb560210695e51f0d4222a8..162cfa833f2d372fac33a6217db1cf1b3a530921 100644 (file)
@@ -1,10 +1,16 @@
-require 'test_helper'
+require "test_helper"
 
 class DiaryCommentTest < ActiveSupport::TestCase
-  api_fixtures
-  fixtures :diary_comments
+  fixtures :users
 
-  def test_diary_comment_count
-    assert_equal 4, DiaryComment.count
+  def setup
+    # Create the default language for diary entries
+    create(:language, :code => "en")
+  end
+
+  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