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