diff options
author | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-03-29 15:04:01 +0200 |
---|---|---|
committer | Jasper Van der Jeugt <jaspervdj@gmail.com> | 2011-03-29 15:04:01 +0200 |
commit | 8bd45b97dec932cf3814c68913693f2aefaac18f (patch) | |
tree | 6307a41a61b35e33c6b01928575777773a23a9d9 /tests/Hakyll/Core/Identifier | |
parent | e9666f78e8fd80d4674afb1e519f23d6e414a223 (diff) | |
download | hakyll-8bd45b97dec932cf3814c68913693f2aefaac18f.tar.gz |
New implementation of patterns using globs.
Closes gh-18
Diffstat (limited to 'tests/Hakyll/Core/Identifier')
-rw-r--r-- | tests/Hakyll/Core/Identifier/Tests.hs | 21 |
1 files changed, 13 insertions, 8 deletions
diff --git a/tests/Hakyll/Core/Identifier/Tests.hs b/tests/Hakyll/Core/Identifier/Tests.hs index 43dd6c1..64b5abc 100644 --- a/tests/Hakyll/Core/Identifier/Tests.hs +++ b/tests/Hakyll/Core/Identifier/Tests.hs @@ -11,12 +11,17 @@ import TestSuite.Util tests :: [Test] tests = fromAssertions "match" - [ Just ["bar"] @=? match "foo/**" "foo/bar" - , Just ["foo/bar"] @=? match "**" "foo/bar" - , Nothing @=? match "*" "foo/bar" - , Just [] @=? match "foo" "foo" - , Just ["foo"] @=? match "*/bar" "foo/bar" - , Just ["foo/bar"] @=? match "**/qux" "foo/bar/qux" - , Just ["foo/bar", "qux"] @=? match "**/*" "foo/bar/qux" - , Just ["foo", "bar/qux"] @=? match "*/**" "foo/bar/qux" + [ Just ["bar"] @=? match "foo/**" "foo/bar" + , Just ["foo/bar"] @=? match "**" "foo/bar" + , Nothing @=? match "*" "foo/bar" + , Just [] @=? match "foo" "foo" + , Just ["foo"] @=? match "*/bar" "foo/bar" + , Just ["foo/bar"] @=? match "**/qux" "foo/bar/qux" + , Just ["foo/bar", "qux"] @=? match "**/*" "foo/bar/qux" + , Just ["foo", "bar/qux"] @=? match "*/**" "foo/bar/qux" + , Just ["foo"] @=? match "*.html" "foo.html" + , Nothing @=? match "*.html" "foo/bar.html" + , Just ["foo/bar"] @=? match "**.html" "foo/bar.html" + , Just ["foo/bar", "wut"] @=? match "**/qux/*" "foo/bar/qux/wut" + , Just ["lol", "fun/large"] @=? match "*cat/**.jpg" "lolcat/fun/large.jpg" ] |