projects
/
rails.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
191f6b3
)
Test DiaryComment body validation
author
Andy Allan
<git@gravitystorm.co.uk>
Thu, 8 Sep 2016 09:01:11 +0000
(10:01 +0100)
committer
Andy Allan
<git@gravitystorm.co.uk>
Thu, 8 Sep 2016 09:01:11 +0000
(10:01 +0100)
Replaces unnecessary test.
test/models/diary_comment_test.rb
patch
|
blob
|
history
diff --git
a/test/models/diary_comment_test.rb
b/test/models/diary_comment_test.rb
index 908c79bfa6cc85c79e58eb37d8342a533d493024..aa03dc66c485810834beb1e7a5ce246567e7be84 100644
(file)
--- a/
test/models/diary_comment_test.rb
+++ b/
test/models/diary_comment_test.rb
@@
-1,8
+1,9
@@
require "test_helper"
class DiaryCommentTest < ActiveSupport::TestCase
- def test_diary_comment_exists
- comment = create(:diary_comment)
- assert_includes DiaryComment.all, comment
+ 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