fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / pmc / scalar.t
blob795a2d70a85532792458684c51e0c16ce3da5175
1 #!./parrot
2 # Copyright (C) 2006-2010, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/pmc/scalar.t - test the scalar PMC
10 =head1 SYNOPSIS
12     % prove t/pmc/scalar.t
14 =head1 DESCRIPTION
16 Tests the scalar PMC.
18 =cut
20 .sub main :main
21     .include 'test_more.pir'
22     plan(1)
24     $P0 = new 'scalar'
25     ok(1, "scalar creation didn't explode")
26 .end
28 # Local Variables:
29 #   mode: pir
30 #   fill-column: 100
31 # End:
32 # vim: expandtab shiftwidth=4 ft=pir: