]> git.vpit.fr Git - perl/modules/Sub-Nary.git/commitdiff
We can't guess how many elements a match will return
authorVincent Pit <vince@profvince.com>
Mon, 4 Aug 2008 21:10:41 +0000 (23:10 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 4 Aug 2008 21:10:41 +0000 (23:10 +0200)
lib/Sub/Nary.pm
t/21-list.t

index 18d4223bae05c4c8ad3919fda05e3513fa8ee114..f408f8c50ff5fdd31d42ab622e401c8a8b4cf329 100644 (file)
@@ -202,7 +202,7 @@ $ops{$_} = 0      for qw/stub nextstate/;
 $ops{$_} = 1      for qw/padsv/;
 $ops{$_} = 'list' for qw/padav/;
 $ops{$_} = 'list' for qw/padhv rv2hv/;
-$ops{$_} = 'list' for qw/padany flip/;
+$ops{$_} = 'list' for qw/padany flip match/;
 
 sub enter {
  my ($self, $cv) = @_;
index cb1dd1a8aca7a9dd8ef433ffa31f31676dd87ee9..71edefbdefb21cdf8c74049df2632aefda69e75f 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 27;
+use Test::More tests => 28;
 
 use Sub::Nary;
 
@@ -41,6 +41,8 @@ my @tests = (
  [ sub { 1 .. 3 },           'list' ],
  [ sub { my @a = (1 .. 4) }, 4 ],
 
+ [ sub { "banana" =~ /(a)/g }, 'list' ],
+
  [ sub { (localtime)[0, 1, 2] }, 3 ],
 
  [ sub { for (1, 2, 3) { } },         0 ],