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