1
0
mirror of synced 2026-03-27 10:10:45 +00:00

Don't test for the POSIX module; per http://www.perlmonks.org/?node_id=689911

This commit is contained in:
Steve Kemp
2008-06-03 21:49:44 +01:00
parent 15436cc018
commit 8e2f1236fb
2 changed files with 1 additions and 5 deletions

View File

@@ -25,7 +25,7 @@ use Test::More qw( no_plan );
EOF
for i in `rgrep '^use ' .. | grep -v Expect | grep -v Xen:: | grep -v Moose | awk '{print $2}' | tr -d
for i in `rgrep '^use ' .. | grep -v Expect | grep -v POSIX | grep -v Xen:: | grep -v Moose | awk '{print $2}' | tr -d
\;\(\) | sort | uniq`; \
do \
echo "BEGIN{ use_ok( '$i' ); }"; \

View File

@@ -58,10 +58,6 @@ BEGIN{ use_ok( 'Pod::Usage' ); }
require_ok( 'Pod::Usage' );
BEGIN{ use_ok( 'POSIX' ); }
require_ok( 'POSIX' );
BEGIN{ use_ok( 'strict' ); }
require_ok( 'strict' );