]> git.openstreetmap.org Git - rails.git/blob - test/models/issue_comment_test.rb
27fa9d66d878bbfeeee918ee6a3a6edd9c14196d
[rails.git] / test / models / issue_comment_test.rb
1 require "test_helper"
2
3 class IssueCommentTest < ActiveSupport::TestCase
4   test "body must be present" do
5     comment = build(:issue_comment, :body => "")
6     assert_not comment.valid?
7     assert_not_nil comment.errors[:body]
8   end
9 end