diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-31 14:29:17 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2001-12-31 14:29:17 +0000 |
commit | 18234ead43ea238ac5b13e555771169ae6ed7a65 (patch) | |
tree | 31fcf0e64a3c722b0e4485bb201604ecc5a663de | |
parent | 27e62af5c3fd1887ccfe9b722e436984a63fabf9 (diff) | |
download | perl-18234ead43ea238ac5b13e555771169ae6ed7a65.tar.gz |
Planning still not right.
p4raw-id: //depot/perl@13980
-rw-r--r-- | lib/User/grent.t | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/User/grent.t b/lib/User/grent.t index 8803429bee..f7eb2c2add 100644 --- a/lib/User/grent.t +++ b/lib/User/grent.t @@ -22,9 +22,11 @@ BEGIN { unless (@grent) { plan skip_all => "no gid 0"; } } -plan tests => 5; +BEGIN { + plan tests => 5; + use_ok('User::grent'); +} -BEGIN { use_ok('User::grent'); } can_ok(__PACKAGE__, 'getgrgid'); my $grent = getgrgid 0; |