2 # Copyright (C) 2007, Parrot Foundation.
8 use Test::More tests => 5;
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(
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 ###################
39 auto/va_ptr-01.t - test auto::va_ptr
43 % prove t/steps/auto/va_ptr-01.t
47 The files in this directory test functionality used by F<Configure.pl>.
49 The tests in this file test auto::va_ptr.
57 config::auto::va_ptr, F<Configure.pl>.
63 # cperl-indent-level: 4
66 # vim: expandtab shiftwidth=4: