[TT# 1592][t] Improve test for open opcode delegation. All tests in the file pass...
[parrot.git] / t / op / 00ff-unix.t
blob30e033e79494ce5df442d11d24ca5043ebd8fbc4
1 #!./parrot
2 # Copyright (C) 2001-2010, Parrot Foundation.
3 # $Id$
5 =head1 NAME
7 t/op/00ff-unix.t - UNIX File format
9 =head1 SYNOPSIS
11         % prove t/op/00ff-unix.t
13 =head1 DESCRIPTION
15 Tests file formats.
17 =cut
19 .sub main :main
20     .include 'test_more.pir'
21     plan(1)
23     test_fileformat_unix()
24 .end
26 .sub test_fileformat_unix
27     lives_ok( <<'CODE', 'fileformat unix' )
28 .sub main
29     print "# testing\n"
30 .end
31 CODE
32 .end
34 # Local Variables:
35 #   mode: pir
36 #   fill-column: 100
37 # End:
38 # vim: expandtab shiftwidth=4 ft=pir: