From 2c2ea34f40bb467450a18070b573aec9f7a01451 Mon Sep 17 00:00:00 2001 From: steve Date: Sun, 18 Dec 2005 23:43:41 +0000 Subject: [PATCH] 2005-12-18 23:43:41 by steve Updated to test for Pod::Usage, and English. --- tests/modules.t | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/tests/modules.t b/tests/modules.t index 0504df8..a76520e 100644 --- a/tests/modules.t +++ b/tests/modules.t @@ -7,6 +7,10 @@ use Test::More qw( no_plan ); +BEGIN{ use_ok( 'English' ); } +require_ok( 'English' ); + + BEGIN{ use_ok( 'File::Copy' ); } require_ok( 'File::Copy' ); @@ -19,6 +23,10 @@ BEGIN{ use_ok( 'Getopt::Long' ); } require_ok( 'Getopt::Long' ); +BEGIN{ use_ok( 'Pod::Usage' ); } +require_ok( 'Pod::Usage' ); + + BEGIN{ use_ok( 'strict' ); } require_ok( 'strict' );