tagged release 0.6.4
[parrot.git] / t / pmc / scalar.t
blob702143ed2ad39079c3f3a73c1157ffc687197a78
1 #!perl
2 # Copyright (C) 2006-2007, The Perl Foundation.
3 # $Id$
5 use strict;
6 use warnings;
7 use lib qw( . lib ../lib ../../lib );
8 use Test::More;
9 use Parrot::Test tests => 1;
11 =head1 NAME
13 t/pmc/scalar.t - test the scalar PMC
16 =head1 SYNOPSIS
18     % prove t/pmc/scalar.t
20 =head1 DESCRIPTION
22 Tests the scalar PMC.
24 =cut
26 pir_output_is( <<'CODE', <<'OUT', 'new', todo => 'not yet working' );
27 .sub 'test' :main
28     new P0, 'scalar'
29     print "ok 1\n"
30 .end
31 CODE
32 ok 1
33 OUT
35 # Local Variables:
36 #   mode: cperl
37 #   cperl-indent-level: 4
38 #   fill-column: 100
39 # End:
40 # vim: expandtab shiftwidth=4: