diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/Hakyll/Core/Identifier/Tests.hs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/Hakyll/Core/Identifier/Tests.hs b/tests/Hakyll/Core/Identifier/Tests.hs index a31b424..8a8ed7c 100644 --- a/tests/Hakyll/Core/Identifier/Tests.hs +++ b/tests/Hakyll/Core/Identifier/Tests.hs @@ -66,4 +66,5 @@ matchesTests = fromAssertions "matches" , False @=? matches (fromRegex "^foo/[^x]*$") "foo/barx" , True @=? matches (complement "foo.markdown") "bar.markdown" , False @=? matches (complement "foo.markdown") "foo.markdown" + , True @=? matches ("foo" .||. "bar") "bar" ] |