2 # Copyright (C) 2007, Parrot Foundation.
8 use Test::More tests => 4;
11 use File::Path qw( mkpath );
12 use File::Temp qw( tempdir );
14 use lib qw( lib t/configure/testlib );
15 use_ok('config::auto::jit');
16 use Parrot::Configure::Options qw( process_options );
17 use Parrot::Configure::Step::Test;
18 use Parrot::Configure::Test qw(
19 test_step_constructor_and_description
21 use IO::CaptureOutput qw( capture );
24 my ($args, $step_list_ref) = process_options( {
29 my $conf = Parrot::Configure::Step::Test->new;
30 $conf->include_config_results( $args );
32 my $serialized = $conf->pcfreeze();
34 my $pkg = q{auto::jit};
35 $conf->add_steps($pkg);
36 $conf->options->set( %{$args} );
37 my $step = test_step_constructor_and_description($conf);
39 ################### DOCUMENTATION ###################
43 auto/jit-01.t - test auto::jit
47 % prove t/steps/auto/jit-01.t
51 The files in this directory test functionality used by F<Configure.pl>.
53 The tests in this file test auto::jit.
61 config::auto::jit, F<Configure.pl>.
67 # cperl-indent-level: 4
70 # vim: expandtab shiftwidth=4: