X-Git-Url: http://git.vpit.fr/?a=blobdiff_plain;f=t%2F20-extended.t;h=c8a270e6711320095c6f1ced0664cca6fa8e925d;hb=01cae1ae25699e5619d0daa4670f0c8930b433bf;hp=28806a4884a806e62a3995f2d5a8378b6631b307;hpb=aeb4782b4d78bdce2873eef541f5759dd9dcae42;p=perl%2Fmodules%2FLinux-SysInfo.git diff --git a/t/20-extended.t b/t/20-extended.t index 28806a4..c8a270e 100644 --- a/t/20-extended.t +++ b/t/20-extended.t @@ -1,5 +1,8 @@ #!perl -T +use strict; +use warnings; + use Test::More; use Linux::SysInfo qw/sysinfo LS_HAS_EXTENDED/; @@ -7,10 +10,12 @@ use Linux::SysInfo qw/sysinfo LS_HAS_EXTENDED/; unless (LS_HAS_EXTENDED) { plan skip_all => 'your kernel does not support extended sysinfo fields'; } else { - plan tests => 4; + plan tests => 4 * 5; - my $si = sysinfo; - ok(defined $si); + for (1 .. 5) { + my $si = sysinfo; + ok(defined $si); - ok(exists $si->{$_}) for qw/totalhigh freehigh mem_unit/; + ok(exists $si->{$_}) for qw/totalhigh freehigh mem_unit/; + } }