+
+ def test_invalid_with_empty_title
+ redaction = build(:redaction, :title => "")
+ assert_not redaction.valid?
+ assert_includes redaction.errors.messages[:title], "can't be blank"
+ end
+
+ def test_invalid_with_empty_description
+ redaction = build(:redaction, :description => "")
+ assert_not redaction.valid?
+ assert_includes redaction.errors.messages[:description], "can't be blank"
+ end