openstreetmap-website/test/models/diary_comment_test.rb
2017-02-19 16:43:32 +00:00

14 lines
383 B
Ruby

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