]> git.vpit.fr Git - perl/modules/Linux-SysInfo.git/blobdiff - t/20-extended.t
Importing Linux-SysInfo-0.07.tar.gz
[perl/modules/Linux-SysInfo.git] / t / 20-extended.t
index c54751e2c4c8f4d104965c100185725a38298c7f..c8a270e6711320095c6f1ced0664cca6fa8e925d 100644 (file)
@@ -1,15 +1,21 @@
 #!perl -T
 
-use Test::More tests => 4;
+use strict;
+use warnings;
+
+use Test::More;
 
 use Linux::SysInfo qw/sysinfo LS_HAS_EXTENDED/;
 
-SKIP:
-{
- skip 'Your kernel does not support extended sysinfo fields', 4 unless LS_HAS_EXTENDED;
+unless (LS_HAS_EXTENDED) {
+ plan skip_all => 'your kernel does not support extended sysinfo fields';
+} else {
+ 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/;
+ }
 }