X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/f02729fa9a29089224502fecc7bf347fa73db0dd..0814b4096c443e2ab3c09baa058aa81a00d205d1:/test/models/diary_comment_test.rb diff --git a/test/models/diary_comment_test.rb b/test/models/diary_comment_test.rb index 908c79bfa..162cfa833 100644 --- a/test/models/diary_comment_test.rb +++ b/test/models/diary_comment_test.rb @@ -1,8 +1,16 @@ require "test_helper" class DiaryCommentTest < ActiveSupport::TestCase - def test_diary_comment_exists - comment = create(:diary_comment) - assert_includes DiaryComment.all, comment + fixtures :users + + 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