fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / pmc / unmanagedstruct.t
blob930890e698f819d6d5258414e3a3d9578186226a
1 #!./parrot
2 # Copyright (C) 2006-2008, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/pmc/unmanagedstruct.t - test the UnManagedStruct PMC
9 =head1 SYNOPSIS
11     % prove t/pmc/unmanagedstruct.t
13 =head1 DESCRIPTION
15 Tests the UnManagedStruct PMC.
17 =cut
19 .sub main :main
20     .include 'test_more.pir'
22     plan(1)
24     new $P0, ['UnManagedStruct']
25     ok(1, 'Instantiated an UnManagedStruct PMC')
26 .end
28 # Local Variables:
29 #   mode: pir
30 #   fill-column: 100
31 # End:
32 # vim: expandtab shiftwidth=4 ft=pir: