* t/pmc/complex.t:
[parrot.git] / t / steps / auto_pmc-01.t
blob3591ec9c68db737341e7e656486edf457205e4c6
1 #! perl
2 # Copyright (C) 2007, The Perl Foundation.
3 # $Id$
4 # auto_pmc-01.t
6 use strict;
7 use warnings;
8 use Test::More tests => 12;
9 use Carp;
10 use lib qw( lib t/configure/testlib );
11 use_ok('config::init::defaults');
12 use_ok('config::auto::pmc');
13 use Parrot::Configure;
14 use Parrot::Configure::Options qw( process_options );
15 use Parrot::Configure::Test qw( test_step_thru_runstep);
17 my $args = process_options(
18     {
19         argv => [ ],
20         mode => q{configure},
21     }
24 my $conf = Parrot::Configure->new;
26 test_step_thru_runstep( $conf, q{init::defaults}, $args );
28 my $pkg = q{auto::pmc};
30 $conf->add_steps($pkg);
31 $conf->options->set( %{$args} );
33 my ( $task, $step_name, $step);
34 $task        = $conf->steps->[1];
35 $step_name   = $task->step;
37 $step = $step_name->new();
38 ok( defined $step, "$step_name constructor returned defined value" );
39 isa_ok( $step, $step_name );
40 ok( $step->description(), "$step_name has description" );
42 my $ret = $step->runstep($conf);
43 ok( $ret, "$step_name runstep() returned true value" );
45 pass("Keep Devel::Cover happy");
46 pass("Completed all tests in $0");
48 ################### DOCUMENTATION ###################
50 =head1 NAME
52 auto_pmc-01.t - test config::auto::pmc
54 =head1 SYNOPSIS
56     % prove t/steps/auto_pmc-01.t
58 =head1 DESCRIPTION
60 The files in this directory test functionality used by F<Configure.pl>.
62 The tests in this file test subroutines found in config::auto::pmc in
63 the most ordinary case.
65 =head1 AUTHOR
67 James E Keenan
69 =head1 SEE ALSO
71 config::auto::pmc, F<Configure.pl>.
73 =cut
75 # Local Variables:
76 #   mode: cperl
77 #   cperl-indent-level: 4
78 #   fill-column: 100
79 # End:
80 # vim: expandtab shiftwidth=4: