X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/757a1aaa850bf48e45ee1dd2225cda1c9fa47d73..420d9da1f98ee167a351828b2f20d3f1f0e164e7:/test/models/issue_comment_test.rb

diff --git a/test/models/issue_comment_test.rb b/test/models/issue_comment_test.rb
index 53ba35889..7a1191ead 100644
--- a/test/models/issue_comment_test.rb
+++ b/test/models/issue_comment_test.rb
@@ -1,7 +1,14 @@
 require "test_helper"
 
 class IssueCommentTest < ActiveSupport::TestCase
-  # test "the truth" do
-  #   assert true
-  # end
+  test "body must be present" do
+    comment = build(:issue_comment, :body => "")
+    assert_not comment.valid?
+    assert_not_nil comment.errors[:body]
+  end
+
+  test "body" do
+    comment = create(:issue_comment)
+    assert_instance_of(RichText::Markdown, comment.body)
+  end
 end