fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / steps / auto / va_ptr-01.t
blob4c4fa2182c274a35f0771d845ca118eadbbb0861
1 #! perl
2 # Copyright (C) 2007, Parrot Foundation.
3 # $Id$
4 # auto/va_ptr-01.t
6 use strict;
7 use warnings;
8 use Test::More tests =>  5;
9 use Carp;
10 use lib qw( lib t/configure/testlib );
11 use_ok('config::auto::va_ptr');
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
18 my ($args, $step_list_ref) = process_options(
19     {
20         argv => [ ],
21         mode => q{configure},
22     }
25 my $conf = Parrot::Configure::Step::Test->new;
26 $conf->include_config_results( $args );
28 my $pkg = q{auto::va_ptr};
29 $conf->add_steps($pkg);
30 $conf->options->set( %{$args} );
31 my $step = test_step_constructor_and_description($conf);
33 pass("Completed all tests in $0");
35 ################### DOCUMENTATION ###################
37 =head1 NAME
39 auto/va_ptr-01.t - test auto::va_ptr
41 =head1 SYNOPSIS
43     % prove t/steps/auto/va_ptr-01.t
45 =head1 DESCRIPTION
47 The files in this directory test functionality used by F<Configure.pl>.
49 The tests in this file test auto::va_ptr.
51 =head1 AUTHOR
53 James E Keenan
55 =head1 SEE ALSO
57 config::auto::va_ptr, F<Configure.pl>.
59 =cut
61 # Local Variables:
62 #   mode: cperl
63 #   cperl-indent-level: 4
64 #   fill-column: 100
65 # End:
66 # vim: expandtab shiftwidth=4: