X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F23-branch.t;h=72451e40e80c45ecdff391facdcce0902df62e73;hb=08ec5acb4cc88d8cc10fec0520d8cd075c08fda1;hp=cfc87c2f1b575eda0752b70bc29aa2dacd939680;hpb=fb7bf9d912eada90e9d1c7f8da68ae8e76f63111;p=perl%2Fmodules%2FSub-Nary.git diff --git a/t/23-branch.t b/t/23-branch.t index cfc87c2..72451e4 100644 --- a/t/23-branch.t +++ b/t/23-branch.t @@ -3,7 +3,7 @@ use strict; use warnings; -use Test::More tests => 15; +use Test::More tests => 17; use Sub::Nary; @@ -60,6 +60,9 @@ my @tests = ( [ \&retinif, { 2 => 1 } ], + [ sub { each %h }, { 0 => 0.5, 2 => 0.5 } ], + [ sub { stat $0 }, { 0 => 0.5, 13 => 0.5 } ], + [ sub { <*.*> }, { list => 1 / 3, 1 => 2 / 3 } ], );