summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorJasper Van der Jeugt <m@jaspervdj.be>2013-01-20 15:51:23 +0100
committerJasper Van der Jeugt <m@jaspervdj.be>2013-01-20 15:51:23 +0100
commit87735f9778d759da7059a0e8d00c91e888a06673 (patch)
treeb2487715eed99beae0ad6be77a6af2d59267359c /tests
parent064128305e5e1a99d20afa62331c7a3bdf566c8a (diff)
downloadhakyll-87735f9778d759da7059a0e8d00c91e888a06673.tar.gz
Fix issue with tagsoup renderTags
Diffstat (limited to 'tests')
-rw-r--r--tests/Hakyll/Web/Html/Tests.hs4
1 files changed, 4 insertions, 0 deletions
diff --git a/tests/Hakyll/Web/Html/Tests.hs b/tests/Hakyll/Web/Html/Tests.hs
index 35ffe27..1c17f5c 100644
--- a/tests/Hakyll/Web/Html/Tests.hs
+++ b/tests/Hakyll/Web/Html/Tests.hs
@@ -36,6 +36,10 @@ tests = testGroup "Hakyll.Web.Html.Tests" $ concat
withUrls id "<code>&lt;stdio&gt;</code>"
, "<style>body > p { line-height: 1.3 }</style>" @=?
withUrls id "<style>body > p { line-height: 1.3 }</style>"
+
+ -- Test minimizing elements
+ , "<meta bar=\"foo\" />" @=?
+ withUrls id "<meta bar=\"foo\" />"
]
, fromAssertions "toUrl"