Test DiaryComment body validation
Replaces unnecessary test.
This commit is contained in:
parent
191f6b3fcd
commit
04591aed9f
1 changed files with 4 additions and 3 deletions
|
@ -1,8 +1,9 @@
|
||||||
require "test_helper"
|
require "test_helper"
|
||||||
|
|
||||||
class DiaryCommentTest < ActiveSupport::TestCase
|
class DiaryCommentTest < ActiveSupport::TestCase
|
||||||
def test_diary_comment_exists
|
test "body must be present" do
|
||||||
comment = create(:diary_comment)
|
comment = build(:diary_comment, :body => "")
|
||||||
assert_includes DiaryComment.all, comment
|
assert_not comment.valid?
|
||||||
|
assert_not_nil comment.errors[:body], "no validation error for missing body"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue