diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs b/tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs index 7799217..4d9421e 100644 --- a/tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs +++ b/tests/Hakyll/Web/Html/RelativizeUrls/Tests.hs @@ -22,6 +22,9 @@ tests = testGroup "Hakyll.Web.Html.RelativizeUrls.Tests" $ relativizeUrlsWith ".." "<a href=\"/foo\">bar</a>" , "<img src=\"../../images/lolcat.png\" />" @=? relativizeUrlsWith "../.." "<img src=\"/images/lolcat.png\" />" + , "<video poster=\"../../images/lolcat.png\"></video>" @=? + relativizeUrlsWith "../.." + "<video poster=\"/images/lolcat.png\"></video>" , "<a href=\"http://haskell.org\">Haskell</a>" @=? relativizeUrlsWith "../.." "<a href=\"http://haskell.org\">Haskell</a>" |