fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / steps / auto / jit-01.t
blobd2f3ed5a8b600be49bef7c12c2b23306a12b272d
1 #! perl
2 # Copyright (C) 2007, Parrot Foundation.
3 # $Id$
4 # auto/jit-01.t
6 use strict;
7 use warnings;
8 use Test::More tests =>  4;
9 use Carp;
10 use Cwd;
11 use File::Path qw( mkpath );
12 use File::Temp qw( tempdir );
13 use File::Spec;
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( {
25     argv => [ ],
26     mode => q{configure},
27 } );
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 ###################
41 =head1 NAME
43 auto/jit-01.t - test auto::jit
45 =head1 SYNOPSIS
47     % prove t/steps/auto/jit-01.t
49 =head1 DESCRIPTION
51 The files in this directory test functionality used by F<Configure.pl>.
53 The tests in this file test auto::jit.
55 =head1 AUTHOR
57 James E Keenan
59 =head1 SEE ALSO
61 config::auto::jit, F<Configure.pl>.
63 =cut
65 # Local Variables:
66 #   mode: cperl
67 #   cperl-indent-level: 4
68 #   fill-column: 100
69 # End:
70 # vim: expandtab shiftwidth=4: