]> git.openstreetmap.org Git - rails.git/blob - test/models/diary_comment_test.rb
Merge remote-tracking branch 'openstreetmap/pull/1332'
[rails.git] / test / models / diary_comment_test.rb
1 require "test_helper"
2
3 class DiaryCommentTest < ActiveSupport::TestCase
4   fixtures :users, :languages
5
6   test "body must be present" do
7     comment = build(:diary_comment, :body => "")
8     assert_not comment.valid?
9     assert_not_nil comment.errors[:body], "no validation error for missing body"
10   end
11 end