<quote>
The uploaded file
Test-Unix-Group-0.01.tar.gz
has entered CPAN as
file: $CPAN/authors/id/N/NI/NIKC/Test-Unix-Group-0.01.tar.gz
size: 6455 bytes
md5: 497cba10cde46dcfb8f48b1de7238f8e
</quote>
From the docs:
SYNOPSIS
use Test::Unix::Group tests => 4;
group_ok({ name => 'wheel' }, "'wheel' must exist");
group_ok({ name => 'wheel' }); # Auto-generate test name
group_ok({ name => 'wheel',
gid => 0, }, "'wheel' must have gid 0");
group_ok({ name => 'wheel', members => [qw(root nik)], }
"'wheel' has the correct members");
Test::Unix::Group automatically exports "group_ok()" to make it
easier to test whether or not Unix groups have been correctly
configured.
More at http://search.cpan.org/~nikc/Test-Unix-Group/