Tagging trunk at r29452 so that the noautopack can later be synched to it.
[parrot.git] / t / steps / auto_memalign-02.t
blobdbcdeef601fc685627acea5782e71936b412e141
1 #! perl
2 # Copyright (C) 2007, The Perl Foundation.
3 # $Id$
4 # auto_memalign-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::memalign');
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::memalign};
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 $conf->data->set( memalign => 'memalign');
43 my $ret = $step->runstep($conf);
44 ok( $ret, "$step_name runstep() returned true value" );
45 is($step->result(), q{already set}, "Expected result was set");
46 is($conf->data->get('memalign'),
47     q{memalign},
48     "memalign set as expected"
51 pass("Completed all tests in $0");
53 ################### DOCUMENTATION ###################
55 =head1 NAME
57 auto_memalign-02.t - test config::auto::memalign
59 =head1 SYNOPSIS
61     % prove t/steps/auto_memalign-02.t
63 =head1 DESCRIPTION
65 The files in this directory test functionality used by F<Configure.pl>.
67 The tests in this file test subroutines exported by
68 config::auto::memalign.
70 =head1 AUTHOR
72 James E Keenan
74 =head1 SEE ALSO
76 config::auto::memalign, F<Configure.pl>.
78 =cut
80 # Local Variables:
81 #   mode: cperl
82 #   cperl-indent-level: 4
83 #   fill-column: 100
84 # End:
85 # vim: expandtab shiftwidth=4: