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
/
scalar.t
blob
795a2d70a85532792458684c51e0c16ce3da5175
1
#!./parrot
2
# Copyright (C) 2006-2010, Parrot Foundation.
3
# $Id$
4
5
=head1 NAME
6
7
t/pmc/scalar.t - test the scalar PMC
8
9
10
=head1 SYNOPSIS
11
12
% prove t/pmc/scalar.t
13
14
=head1 DESCRIPTION
15
16
Tests the scalar PMC.
17
18
=cut
19
20
.sub main :main
21
.include 'test_more.pir'
22
plan(1)
23
24
$P0 = new 'scalar'
25
ok(1, "scalar creation didn't explode")
26
.end
27
28
# Local Variables:
29
# mode: pir
30
# fill-column: 100
31
# End:
32
# vim: expandtab shiftwidth=4 ft=pir: