tagged release 0.6.4
[parrot.git] / t / steps / auto_arch-11.t
blobe93bcf614b97bb99e63392939aea40ede55e857a
1 #! perl
2 # Copyright (C) 2007, The Perl Foundation.
3 # $Id$
4 # auto_arch-11.t
6 use strict;
7 use warnings;
8 use Test::More tests =>  13;
9 use Carp;
10 use lib qw( lib t/configure/testlib );
11 use_ok('config::init::defaults');
12 use_ok('config::auto::arch');
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::arch};
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 );
42 my $pseudoarch = q{cygwin-i486};
43 $conf->data->set('archname' => $pseudoarch);
44 my $ret = $step->runstep($conf);
45 ok( $ret, "$step_name runstep() returned true value" );
46 is($step->result(), q{}, "Result was empty string as expected");
47 is($conf->data->get('cpuarch'), q{i386},
48     "'cpuarch' was set as expected");
49 is($conf->data->get('osname'), q{cygwin},
50     "'osname' was set as expected");
53 pass("Completed all tests in $0");
55 ################### DOCUMENTATION ###################
57 =head1 NAME
59 auto_arch-11.t - test config::auto::arch
61 =head1 SYNOPSIS
63     % prove t/steps/auto_arch-11.t
65 =head1 DESCRIPTION
67 The files in this directory test functionality used by F<Configure.pl>.
69 The tests in this file test config::auto::arch in the case where
70 the architecture name is something like 'cygwin-i486'.
72 =head1 AUTHOR
74 James E Keenan
76 =head1 SEE ALSO
78 config::auto::arch, F<Configure.pl>.
80 =cut
82 # Local Variables:
83 #   mode: cperl
84 #   cperl-indent-level: 4
85 #   fill-column: 100
86 # End:
87 # vim: expandtab shiftwidth=4: