1 # Copyright (C) 2001-2003, Parrot Foundation.
6 t/configure/testlib/init/beta.pm - Module used in configuration tests
10 Nonsense module used only in testing the configuration system.
18 use base
qw(Parrot::Configure::Step);
23 $data{description
} = q{Determining if your computer does beta};
24 $data{args
} = [ qw( verbose ) ];
30 my ( $self, $conf ) = @_;
31 my $verbose = $conf->options->get('verbose');
32 print "\nbeta is verbose\n" if $verbose;
33 print "\nYou've got beta\n";
41 # cperl-indent-level: 4
44 # vim: expandtab shiftwidth=4: