sync a bunch of files with Test::Simple 0.86
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / simple.t
1 # $Id$
2 BEGIN {
3     if( $ENV{PERL_CORE} ) {
4         chdir 't';
5         @INC = '../lib';
6     }
7 }
8
9 use strict;
10
11 BEGIN { $| = 1; $^W = 1; }
12
13 use Test::Simple tests => 3;
14
15 ok(1, 'compile');
16
17 ok(1);
18 ok(1, 'foo');