2 # Copyright (C) 2007, Parrot Foundation.
8 use Test::More tests => 3;
11 use Parrot::Configure::Step::List qw| get_steps_list |;
14 ok( @steps = get_steps_list(), "non-zero number of steps located" );
16 foreach my $s (@steps) {
17 $badsteps++ unless $s =~ /^(init|inter|auto|gen)::\w+$/;
19 is( $badsteps, 0, "no bad entries found in \@steps" );
21 pass("Completed all tests in $0");
23 ################### DOCUMENTATION ###################
27 003-steplist.t - test Parrot::Configure::Step::List
31 % prove t/configure/003-steplist.t
35 The files in this directory test functionality used by F<Configure.pl>.
37 The tests in this file test subroutines exported by
38 Parrot::Configure::Step::List.
46 Parrot::Configure::Step::List, F<Configure.pl>.
52 # cperl-indent-level: 4
55 # vim: expandtab shiftwidth=4: