]> sipb.mit.edu Git - ikiwiki.git/blobdiff - t/pagespec_match.t
complex test
[ikiwiki.git] / t / pagespec_match.t
index 35d420f1052b88aca3e28fd399c92fe3f72719cf..4f5ccc92ced84e9f68567da0bfef6c3b46d27092 100755 (executable)
@@ -1,7 +1,7 @@
 #!/usr/bin/perl
 use warnings;
 use strict;
-use Test::More tests => 20;
+use Test::More tests => 21;
 
 BEGIN { use_ok("IkiWiki"); }
 
@@ -17,6 +17,7 @@ ok(! IkiWiki::pagespec_match("foo", "f?? and !foo"));
 ok(! IkiWiki::pagespec_match("foo", "* and !foo"));
 ok(! IkiWiki::pagespec_match("foo", "foo and !foo"));
 ok(! IkiWiki::pagespec_match("foo.png", "* and !*.*"));
+ok(IkiWiki::pagespec_match("foo", "(bar or ((meep and foo) or (baz or foo) or beep))"));
 
 # old style globlists
 ok(IkiWiki::pagespec_match("foo", "foo bar"), "simple list");