X-Git-Url: http://git.vpit.fr/?p=perl%2Fmodules%2FSub-Nary.git;a=blobdiff_plain;f=t%2F21-list.t;h=80eb5ab6706ca8c1235422e9587211aaf3a8187c;hp=af3af50d4d9b0e50133031e71ab78e4708725675;hb=ffe40b718c29e7f7a3ced4c719302736c573d710;hpb=24e9267d88e3b5d49961e061b974562c55876c4d diff --git a/t/21-list.t b/t/21-list.t index af3af50..80eb5ab 100644 --- a/t/21-list.t +++ b/t/21-list.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 39; +use Test::More tests => 40; use Sub::Nary; @@ -66,6 +66,7 @@ my @tests = ( [ sub { stat $0 }, 13 ], [ sub { caller 0 }, sub { my @a = caller 0; scalar @a }->() ], [ sub { localtime }, do { my @a = localtime; scalar @a } ], + [ sub { gmtime }, do { my @a = gmtime; scalar @a } ], ); my $i = 1;