* t/oo/composition.t, t/oo/mro-c3.t, t/op/calling.t:
[parrot.git] / t / pmc / compiler.t
blob251d4b149b8d71b4e61b60214e9141e566b2f4a5
1 #! parrot
2 # Copyright (C) 2006-2007, The Perl Foundation.
3 # $Id$
5 =head1 NAME
7 t/pmc/compiler.t - test Compiler PMC
9 =head1 SYNOPSIS
11     % prove t/pmc/compiler.t
13 =head1 DESCRIPTION
15 Tests the Compiler PMC.
17 =cut
19 .sub main :main
20     .include 'include/test_more.pir'
22     plan(1)
24     new P0, 'Compiler'
25     ok(1, "Instantiated 'Compiler'")
26 .end
28 # Local Variables:
29 #   mode: cperl
30 #   cperl-indent-level: 4
31 #   fill-column: 100
32 # End:
33 # vim: expandtab shiftwidth=4: