fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / pir / registernames.t
blobec390d81ae28270dc5ed25019a244b863a1d6226
1 #!./parrot
2 # Copyright (C) 2009, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/pir/registernames.t - Tests for PIR register variable names
9 =head1 SYNOPSIS
11     % prove t/pir/registernames.t
13 =head1 DESCRIPTION
15 Tests for register variable names in PIR.
17 =cut
19 .sub 'main' :main
20     .include 'test_more.pir'
21     plan(1)
22     test_I01_is_not_I1()
23 .end
25 .sub test_I01_is_not_I1
26     $I1  = 1
27     $I01 = 2
28     isnt($I1,$I01, 'Register variables "$I1" and "$I01" are not the same variable')
29 .end
31 # Local Variables:
32 #   mode: pir
33 #   fill-column: 100
34 # End:
35 # vim: expandtab shiftwidth=4 ft=pir: