repo.or.cz
/
parrot.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git]
/
t
/
pmc
/
pointer.t
blob
90e39de9596e38874e0e7478ae5aa51f6c875c52
1
#!./parrot
2
# Copyright (C) 2006-2008, Parrot Foundation.
3
# $Id$
4
5
=head1 NAME
6
7
t/pmc/pointer.t - test the Pointer PMC
8
9
=head1 SYNOPSIS
10
11
% prove t/pmc/pointer.t
12
13
=head1 DESCRIPTION
14
15
Tests the Pointer PMC.
16
17
=cut
18
19
.sub main :main
20
.include 'test_more.pir'
21
22
plan(1)
23
24
new $P0, ['Pointer']
25
ok(1, 'Instantiated a Pointer PMC')
26
.end
27
28
# Local Variables:
29
# mode: pir
30
# fill-column: 100
31
# End:
32
# vim: expandtab shiftwidth=4 ft=pir: