-require 'test_helper'
+require "test_helper"
class DiaryCommentTest < ActiveSupport::TestCase
- api_fixtures
- fixtures :diary_comments
+ fixtures :users, :languages
- def test_diary_comment_count
- assert_equal 4, DiaryComment.count
+ 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