Update of /cvsroot/module-build/Module-Build/t
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15599/t
Modified Files:
runthrough.t
Log Message:
Integrate from branch
Index: runthrough.t
===================================================================
RCS file: /cvsroot/module-build/Module-Build/t/runthrough.t,v
retrieving revision 1.49
retrieving revision 1.50
diff -C2 -d -r1.49 -r1.50
*** runthrough.t 28 Nov 2004 02:24:30 -0000 1.49
--- runthrough.t 30 Nov 2004 03:10:46 -0000 1.50
***************
*** 83,87 ****
my $contents = do {local $/; <$fh>};
$contents =~ /Module::Build version ([0-9_.]+)/m;
! ok $1, $build->VERSION, "Check version used to create META.yml";;
if ($build->check_installed_status('Archive::Tar', 0)
--- 83,87 ----
my $contents = do {local $/; <$fh>};
$contents =~ /Module::Build version ([0-9_.]+)/m;
! ok $1 == $build->VERSION, 1, "Check version used to create META.yml: $1 == " . $build->VERSION;
if ($build->check_installed_status('Archive::Tar', 0)
|