X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/dc2a2c8ebd1a11e4a64555fda22c6859a51defff..72ae20ea3cd2c4534de5a99cc5e963ae9484bc62:/test/models/diary_comment_test.rb diff --git a/test/models/diary_comment_test.rb b/test/models/diary_comment_test.rb index a32c153f9..aeb054a02 100644 --- a/test/models/diary_comment_test.rb +++ b/test/models/diary_comment_test.rb @@ -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