* t/pmc/complex.t:
[parrot.git] / t / steps / auto_gcc-02.t
blobcefaf28f711fad173d6c55f685ede7a6f9d8b33e
1 #! perl
2 # Copyright (C) 2007, The Perl Foundation.
3 # $Id$
4 # auto_gcc-02.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::gcc');
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     argv            => [],
19     mode            => q{configure},
20 } );
22 my $conf = Parrot::Configure->new();
24 test_step_thru_runstep($conf, q{init::defaults}, $args);
26 my ($task, $step_name, $step, $ret);
27 my $pkg = q{auto::gcc};
29 $conf->add_steps($pkg);
30 $conf->options->set(%{$args});
31 $task = $conf->steps->[1];
32 $step_name   = $task->step;
34 $step = $step_name->new();
35 ok(defined $step, "$step_name constructor returned defined value");
36 isa_ok($step, $step_name);
37 ok($step->description(), "$step_name has description");
39 my $gnucref = {};
40 ok($step->_evaluate_gcc($conf, $gnucref),
41     "_evaluate_gcc() returned true value");
42 ok(! defined $conf->data->get( 'gccversion' ),
43     "gccversion undef as expected");
46 pass("Completed all tests in $0");
48 ################### DOCUMENTATION ###################
50 =head1 NAME
52 auto_gcc-02.t - test config::auto::gcc
54 =head1 SYNOPSIS
56     % prove t/steps/auto_gcc-02.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 exported by config::auto::gcc.
64 =head1 AUTHOR
66 James E Keenan
68 =head1 SEE ALSO
70 config::auto::gcc, F<Configure.pl>.
72 =cut
74 # Local Variables:
75 #   mode: cperl
76 #   cperl-indent-level: 4
77 #   fill-column: 100
78 # End:
79 # vim: expandtab shiftwidth=4: