1 # Copyright (C) 2001-2003, Parrot Foundation.
6 t/configure/testlib/inter/theta.pm - Module used in configuration tests
10 Nonsense module used only in testing the configuration system.
19 use File
::Basename qw
/basename/;
21 use base
qw(Parrot::Configure::Step);
23 use Parrot
::Configure
::Utils
':inter';
28 $data{description
} = q{Determining if your computer does theta};
29 $data{args
} = [ qw( ask theta ) ];
35 my ( $self, $conf ) = @_;
37 my $ask = $conf->options->get('ask');
39 my $question = 'Will Perl 6 be out before Christmas?';
42 $response = prompt
( $question, q{Y/n} );
51 # cperl-indent-level: 4
54 # vim: expandtab shiftwidth=4: