Whoops, an *actually useful* failing test.

This commit is contained in:
Parker Moore 2016-11-10 15:30:51 -08:00
parent f27eb77d0b
commit 9f8f031469
No known key found for this signature in database
GPG Key ID: 193CDEBA72063C58
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ class TestURL < JekyllUnitTest
should "check for key without trailing underscore" do
_, matching_doc = fixture_document("_methods/configuration.md")
assert_equal "/lol", URL.new(
:template => "/:year-:month-:day_:title",
assert_equal "/methods/2016-11-10_configuration", URL.new(
:template => "/methods/:year-:month-:day_:title",
:placeholders => matching_doc.url_placeholders
).to_s
end