Commit failing test for lack of certain excerpt drop properties.

This commit is contained in:
Parker Moore 2016-07-07 13:34:10 -07:00
parent 5a339cc735
commit c46f219d3c
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 4 additions and 0 deletions

View File

@ -29,6 +29,10 @@ class TestExcerptDrop < JekyllUnitTest
assert_equal @excerpt_drop["layout"], @doc_drop["layout"] assert_equal @excerpt_drop["layout"], @doc_drop["layout"]
end end
should "be inspectable" do
refute_empty @excerpt_drop.inspect
end
should "inherit values from the document" do should "inherit values from the document" do
assert_equal @excerpt_drop.keys.sort, @doc_drop.keys.sort assert_equal @excerpt_drop.keys.sort, @doc_drop.keys.sort
end end