openstreetmap-website/test/models/diary_comment_test.rb
Andy Allan 04591aed9f Test DiaryComment body validation
Replaces unnecessary test.
2016-09-08 10:01:11 +01:00

9 lines
275 B
Ruby

require "test_helper"
class DiaryCommentTest < ActiveSupport::TestCase
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