]> git.vpit.fr Git - perl/modules/Sub-Nary.git/commitdiff
Also add support for stat
authorVincent Pit <vince@profvince.com>
Mon, 4 Aug 2008 23:08:44 +0000 (01:08 +0200)
committerVincent Pit <vince@profvince.com>
Mon, 4 Aug 2008 23:08:44 +0000 (01:08 +0200)
lib/Sub/Nary.pm
t/20-return.t
t/21-list.t

index 861f9e59d723653d31467133ae63a0abf9d1c64b..d1c1ddaf9a221aed87584f5d36c39781c9c5afa4 100644 (file)
@@ -204,6 +204,7 @@ $ops{$_} = 1      for qw/padsv/;
 $ops{$_} = 'list' for qw/padav/;
 $ops{$_} = 'list' for qw/padhv rv2hv/;
 $ops{$_} = 'list' for qw/padany flip match entereval readline/;
+$ops{stat}      = 13;
 $ops{caller}    = sub { my @a = caller 0; scalar @a }->();
 $ops{localtime} = do { my @a = localtime; scalar @a };
 
index 087813e6e417aa25ca1e4d8b82adadf4147967a1..7ba7a74f83e47b4a9eb8e8b9775d3831345d8efd 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 51;
+use Test::More tests => 52;
 
 use Sub::Nary;
 
@@ -73,6 +73,7 @@ my @tests = (
 
  [ sub { return <$x> }, 'list' ],
 
+ [ sub { return stat $0 },   13 ],
  [ sub { return caller 0 },  sub { my @a = caller 0; scalar @a }->() ],
  [ sub { return localtime }, do { my @a = localtime; scalar @a } ],
 );
index a9b1fdde51823e5ae8aa8c8aa0803401b1513987..56c06f3a7d03062a95f9907f3216f7a0ba0ccbb2 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 37;
+use Test::More tests => 38;
 
 use Sub::Nary;
 
@@ -61,6 +61,7 @@ my @tests = (
 
  [ sub { <$x> }, 'list' ],
 
+ [ sub { stat $0 },   13 ],
  [ sub { caller 0 },  sub { my @a = caller 0; scalar @a }->() ],
  [ sub { localtime }, do { my @a = localtime; scalar @a } ],
 );