[Module-build-checkins] Module-Build/t manifypods.t,1.8,1.8.2.1
Status: Beta
Brought to you by:
kwilliams
|
From: Ken W. <kwi...@us...> - 2005-04-14 22:26:44
|
Update of /cvsroot/module-build/Module-Build/t In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv19521/t Modified Files: Tag: release-0_26_branch manifypods.t Log Message: Make sure Pod::Man is installed or these tests will fail Index: manifypods.t =================================================================== RCS file: /cvsroot/module-build/Module-Build/t/manifypods.t,v retrieving revision 1.8 retrieving revision 1.8.2.1 diff -u -d -r1.8 -r1.8.2.1 --- manifypods.t 21 Jan 2004 04:49:57 -0000 1.8 +++ manifypods.t 14 Apr 2005 22:26:35 -0000 1.8.2.1 @@ -3,10 +3,16 @@ use strict; use File::Spec; +use Test; +BEGIN { + my $common_pl = File::Spec->catfile('t', 'common.pl'); + require $common_pl; +} + use File::Path qw( rmtree ); -use Test; -BEGIN { plan tests => 21 } +need_module('Pod::Man'); +plan tests => 21; use Module::Build; |