diff options
Diffstat (limited to 'tests/Hakyll')
-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" |