diff options
author | Joey Hess <joey@gnu.kitenet.net> | 2009-10-08 18:47:48 -0400 |
---|---|---|
committer | Joey Hess <joey@gnu.kitenet.net> | 2009-10-08 18:47:48 -0400 |
commit | d5f014449511460d4da22591379b30bd5de86145 (patch) | |
tree | af91c90893c8487e2342e92d9ad7ff49a03a891b /t | |
parent | 1abbc6a4041e752fbec9b947a9d453b3b126c120 (diff) |
use_pagespec: do not fail with error when unable to match, unless it fails
with an ErrorReason
Diffstat (limited to 't')
-rwxr-xr-x | t/use_pagespec.t | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/t/use_pagespec.t b/t/use_pagespec.t index 7b904075e..92d7977cf 100755 --- a/t/use_pagespec.t +++ b/t/use_pagespec.t @@ -1,7 +1,7 @@ #!/usr/bin/perl use warnings; use strict; -use Test::More tests => 64; +use Test::More tests => 10; BEGIN { use_ok("IkiWiki"); } @@ -24,7 +24,8 @@ is_deeply([use_pagespec("foo", "post/*", sort => "title", num => 50)], is_deeply([use_pagespec("foo", "post/*", sort => "title", limit => sub { $_[0] !~ /3/}) ], ["post/1", "post/2"]); -eval { use_pagespec("foo", "beep") }; -ok($@, "fails with error when unable to match anything"); +my $r=eval { use_pagespec("foo", "beep") }; +ok(eval { use_pagespec("foo", "beep") } == 0); +ok(! $@, "does not fail with error when unable to match anything"); eval { use_pagespec("foo", "this is not a legal pagespec!") }; ok($@, "fails with error when pagespec bad"); |