[cage] Fix pgegrep, which was merely an innocent bystander in the Great Namespace...
[parrot.git] / t / pir / registernames.t
blob25c1e6cfb0b8fb65f3b5f98693de9feae4a58ef2
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: