2 # Copyright (C) 2006-2007, Parrot Foundation.
7 use lib qw( . lib ../lib ../../lib );
9 use Parrot::Test tests => 2;
13 t/examples/past.t - Test examples in F<examples/past>
17 % prove t/examples/past.t
18 % prove -v t/examples/past.t
22 Test the examples in F<examples/past>.
30 Bernhard Schmalhofer - <Bernhard.Schmalhofer@gmx.de>
34 # Set up expected output for examples
36 # A stub for future PAST examples
38 '01-sub.pir' => "5\n",
39 'four_plus_one.pir' => "5\n",
42 while ( my ( $example, $expected ) = each %expected ) {
43 example_output_is( "examples/past/$example", $expected );
48 # cperl-indent-level: 4
51 # vim: expandtab shiftwidth=4: