xref: /onnv-gate/usr/src/cmd/perl/5.8.4/distrib/lib/Test/Simple/t/simple.t (revision 0:68f95e015346)
1BEGIN {
2    if( $ENV{PERL_CORE} ) {
3        chdir 't';
4        @INC = '../lib';
5    }
6}
7
8use strict;
9
10BEGIN { $| = 1; $^W = 1; }
11
12use Test::Simple tests => 3;
13
14ok(1, 'compile');
15
16ok(1);
17ok(1, 'foo');
18