summaryrefslogtreecommitdiffstats
path: root/t/002-complicated-matching.t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2008-12-06 23:54:07 -0500
committerdoy <doy@tozt.net>2008-12-06 23:54:07 -0500
commit254e8b9c08249f1fa8119d49b3eaf2f91c680018 (patch)
treed27834b73b564683c08cdfafa7a654cb0aa8f8dd /t/002-complicated-matching.t
parent6bbd36711c3a8ddc93a949b1c254ce33824659d4 (diff)
downloadmoosex-role-matcher-254e8b9c08249f1fa8119d49b3eaf2f91c680018.tar.gz
moosex-role-matcher-254e8b9c08249f1fa8119d49b3eaf2f91c680018.zip
add more tests
Diffstat (limited to 't/002-complicated-matching.t')
-rw-r--r--t/002-complicated-matching.t4
1 files changed, 3 insertions, 1 deletions
diff --git a/t/002-complicated-matching.t b/t/002-complicated-matching.t
index 80d081c..1c0a7b9 100644
--- a/t/002-complicated-matching.t
+++ b/t/002-complicated-matching.t
@@ -1,7 +1,7 @@
#!/usr/bin/env perl
use strict;
use warnings;
-use Test::More tests => 4;
+use Test::More tests => 5;
package Foo;
use Moose;
@@ -23,3 +23,5 @@ ok(!$foo->match(a => [qr/b/, sub { length(shift) == 4 }]),
'arrayref matching works');
ok($foo->match('!a' => 'bar', b => 'bar', '!c' => 'bar'),
'negated matching works');
+ok(!$foo->match(a => 'foo', '!b' => 'bar'),
+ 'negated matching works');