fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / steps / auto / attributes-01.t
blobe37d337672c623b12fc668d366c58a38d0685c70
1 #! perl
2 # Copyright (C) 2007, Parrot Foundation.
3 # $Id$
4 # auto/attributes-01.t
6 use strict;
7 use warnings;
8 use Test::More tests =>  7;
9 use Carp;
10 use lib qw( lib t/configure/testlib );
11 use_ok('config::auto::attributes');
12 use Parrot::Configure::Options qw( process_options );
13 use Parrot::Configure::Step::Test;
14 use Parrot::Configure::Test qw(
15     test_step_constructor_and_description
17 use IO::CaptureOutput qw | capture |;
19 my ($args, $step_list_ref) = process_options( {
20     argv            => [ ],
21     mode            => q{configure},
22 } );
24 my $conf = Parrot::Configure::Step::Test->new;
25 $conf->include_config_results( $args );
27 my $pkg = q{auto::attributes};
29 $conf->add_steps($pkg);
30 $conf->options->set(%{$args});
31 my $step = test_step_constructor_and_description($conf);
34     my $rv;
35     my $stdout;
36     capture(
37         sub { $rv = $step->runstep($conf); },
38         \$stdout,
39     );
40     ok( defined $rv, "runstep() returned defined value" );
41     unlike($conf->data->get('ccflags'),
42         qr/HASATTRIBUTE_NEVER_WORKS/,
43         "'ccflags' excludes bogus attribute as expected"
44     );
46 $conf->cc_clean();
48 pass("Completed all tests in $0");
50 ################### DOCUMENTATION ###################
52 =head1 NAME
54 auto/attributes-01.t - test auto::attributes
56 =head1 SYNOPSIS
58     % prove t/steps/auto/attributes-01.t
60 =head1 DESCRIPTION
62 The files in this directory test functionality used by F<Configure.pl>.
64 The tests in this file test auto::attributes.
66 =head1 AUTHOR
68 James E Keenan
70 =head1 SEE ALSO
72 config::auto::attributes, F<Configure.pl>.
74 =cut
76 # Local Variables:
77 #   mode: cperl
78 #   cperl-indent-level: 4
79 #   fill-column: 100
80 # End:
81 # vim: expandtab shiftwidth=4: