fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / pmc / object.t
blobe289eebacc145c348a073f33a9bcf1ad23b7c861
1 #!./parrot
2 # Copyright (C) 2007-2008, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/pmc/object.t - test the Object PMC
9 =head1 SYNOPSIS
11     % prove t/pmc/object.t
13 =head1 DESCRIPTION
15 Tests the Object PMC.
17 =cut
19 # L<PDD15/Object PMC API>
20 ## TODO add more tests as this is documented and implemented
22 .sub main :main
23     .include 'test_more.pir'
25     plan(1)
27     push_eh cant_instantiate
28       new $P0, ['Object']
29     pop_eh
30     ok(0, 'Able to instantiate Object')
31     goto done_1
32 cant_instantiate:
33     ok(1, 'Unable to Instantiate Object')
34 done_1:
35 .end
37 # Local Variables:
38 #   mode: pir
39 #   fill-column: 100
40 # End:
41 # vim: expandtab shiftwidth=4 ft=pir: