[Module-build-checkins] Module-Build/t runthrough.t,1.45.2.1,1.45.2.2
Status: Beta
Brought to you by:
kwilliams
From: Ken W. <kwi...@us...> - 2004-11-30 03:09:12
|
Update of /cvsroot/module-build/Module-Build/t In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15164/t Modified Files: Tag: release-0_26_branch runthrough.t Log Message: The VERSION checking stuff doesn't work with version.pm, so use a dumb-ified modification Index: runthrough.t =================================================================== RCS file: /cvsroot/module-build/Module-Build/t/runthrough.t,v retrieving revision 1.45.2.1 retrieving revision 1.45.2.2 diff -C2 -d -r1.45.2.1 -r1.45.2.2 *** runthrough.t 21 Nov 2004 04:03:42 -0000 1.45.2.1 --- runthrough.t 30 Nov 2004 03:08:56 -0000 1.45.2.2 *************** *** 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) |