diff options
author | Jasper Van der Jeugt <m@jaspervdj.be> | 2013-01-20 15:51:23 +0100 |
---|---|---|
committer | Jasper Van der Jeugt <m@jaspervdj.be> | 2013-01-20 15:51:23 +0100 |
commit | 87735f9778d759da7059a0e8d00c91e888a06673 (patch) | |
tree | b2487715eed99beae0ad6be77a6af2d59267359c /tests/Hakyll/Web/Html | |
parent | 064128305e5e1a99d20afa62331c7a3bdf566c8a (diff) | |
download | hakyll-87735f9778d759da7059a0e8d00c91e888a06673.tar.gz |
Fix issue with tagsoup renderTags
Diffstat (limited to 'tests/Hakyll/Web/Html')
-rw-r--r-- | tests/Hakyll/Web/Html/Tests.hs | 4 |
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><stdio></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" |