summaryrefslogtreecommitdiffstats
path: root/t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2008-12-06 20:23:00 -0500
committerdoy <doy@tozt.net>2008-12-06 20:23:00 -0500
commit7bb7288a5489b6264680a81d4c5ab31a0ceeea72 (patch)
tree69597ad9edf0b420852522726c3797f720574f7d /t
parente72c5fd3a95e3babb5d4b30523c10b7678a0631d (diff)
downloadmoosex-role-matcher-7bb7288a5489b6264680a81d4c5ab31a0ceeea72.tar.gz
moosex-role-matcher-7bb7288a5489b6264680a81d4c5ab31a0ceeea72.zip
use ! as the prefix for negated matching rather than not_, since it's possible to have methods named 'not_foo'
Diffstat (limited to 't')
-rw-r--r--t/002-complicated-matching.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/002-complicated-matching.t b/t/002-complicated-matching.t
index bcf2399..80d081c 100644
--- a/t/002-complicated-matching.t
+++ b/t/002-complicated-matching.t
@@ -21,5 +21,5 @@ ok($foo->match(a => [qr/b/, sub { length(shift) == 3 }]),
'arrayref matching works');
ok(!$foo->match(a => [qr/b/, sub { length(shift) == 4 }]),
'arrayref matching works');
-ok($foo->match(not_a => 'bar', b => 'bar', not_c => 'bar'),
+ok($foo->match('!a' => 'bar', b => 'bar', '!c' => 'bar'),
'negated matching works');