fix codetest failure - ASSERT_ARGS does not have a ; after and
[parrot.git] / t / pir / macro.t
blob178890f43a46ca7f42f6aba46bb3f988de9b9592
1 #!./parrot
2 # Copyright (C) 2001-2010, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/pir/macro.t - Tests for macros in PIR
9 =head1 SYNOPSIS
11     % prove t/pir/macro.t
13 =head1 DESCRIPTION
15 Tests for macros in PIR.
17 =cut
19 .macro foo()
20     ok(1, 'basic macro')
21 .endm
23 .macro bar(x)
24     ok(.x, 'basic macro with argument')
25 .endm
27 .macro_const PI_APPROX 4
29 .sub main :main
30     .include 'test_more.pir'
31     plan(3)
32     .foo()
33     .bar(42)
34     is(.PI_APPROX, 4, '.macro_const')
35 .end
37 # Local Variables:
38 #   mode: pir
39 #   fill-column: 100
40 # End:
41 # vim: expandtab shiftwidth=4 ft=pir: