Fix slugify test

This commit is contained in:
Jussi Kinnula
2016-03-29 10:11:47 +03:00
parent 4c65772c44
commit 4effe25cc1

View File

@@ -183,7 +183,7 @@ class TestUtils < JekyllUnitTest
end
should "replace everything else but ASCII characters" do
assert_equal "the-config.yml-file", Utils.slugify("The _config.yml file?", mode: "ascii")
assert_equal "the-config-yml-file", Utils.slugify("The _config.yml file?", mode: "ascii")
end
should "only replace whitespace if mode is raw" do