Author: jkeenan
Date: Sun Apr 15 09:12:05 2007
New Revision: 18223
Modified:
branches/reconfigure/t/configure/05-run_one_step.t
Log:
Replacing init::manifest with init::foobar (like 07- thru 10-). This speeds up
testing with no loss of coverage.
Modified: branches/reconfigure/t/configure/05-run_one_step.t
==============================================================================
--- branches/reconfigure/t/configure/05-run_one_step.t (original)
+++ branches/reconfigure/t/configure/05-run_one_step.t Sun Apr 15 09:12:05 2007
@@ -27,6 +27,7 @@
use Parrot::Configure;
use Parrot::Configure::Options qw( process_options );
use Parrot::IO::Capture::Mini;
+use lib ("t/configure/testlib");
my $parrot_version = Parrot::BuildUtil::parrot_version();
like($parrot_version, qr/\d+\.\d+\.\d+/,
@@ -65,9 +66,8 @@
isa_ok($conf->$k, "Parrot::Configure::Data");
}
-my $step = q{init::manifest};
-# Following assignment would change if config/init/manifest.pm changed.
-my $description = q{Checking MANIFEST};
+my $step = q{init::foobar};
+my $description = 'Determining if your computer does foobar';
$conf->add_steps( $step );
my @confsteps = @{$conf->steps};