summaryrefslogtreecommitdiffstats
path: root/t/002-complicated-matching.t
diff options
context:
space:
mode:
authordoy <doy@tozt.net>2008-12-07 00:33:20 -0500
committerdoy <doy@tozt.net>2008-12-07 00:33:20 -0500
commitf72f582111bb4da827ed4fb7a7ff855f6faf9786 (patch)
tree440a41e961908b5930a43c04930e24931695dd14 /t/002-complicated-matching.t
parent1f7c809af24762d7a1c0d1fab184a3ef1d8c54cd (diff)
downloadmoosex-role-matcher-f72f582111bb4da827ed4fb7a7ff855f6faf9786.tar.gz
moosex-role-matcher-f72f582111bb4da827ed4fb7a7ff855f6faf9786.zip
use $_ for passing the value to coderef matchers, rather than passing it as an argument
Diffstat (limited to 't/002-complicated-matching.t')
-rw-r--r--t/002-complicated-matching.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/002-complicated-matching.t b/t/002-complicated-matching.t
index 1c0a7b9..9fa204f 100644
--- a/t/002-complicated-matching.t
+++ b/t/002-complicated-matching.t
@@ -15,11 +15,11 @@ has [qw/a b c/] => (
package main;
my $foo = Foo->new(a => 'foo', b => 'bar', c => 'baz');
-ok($foo->match(a => [qr/o/, sub { length(shift) == 4 }]),
+ok($foo->match(a => [qr/o/, sub { length == 4 }]),
'arrayref matching works');
-ok($foo->match(a => [qr/b/, sub { length(shift) == 3 }]),
+ok($foo->match(a => [qr/b/, sub { length == 3 }]),
'arrayref matching works');
-ok(!$foo->match(a => [qr/b/, sub { length(shift) == 4 }]),
+ok(!$foo->match(a => [qr/b/, sub { length == 4 }]),
'arrayref matching works');
ok($foo->match('!a' => 'bar', b => 'bar', '!c' => 'bar'),
'negated matching works');