Debian lenny version packages
[pkg-perl] / deb-src / libtest-simple-perl / libtest-simple-perl-0.80 / t / simple.t
1 BEGIN {
2     if( $ENV{PERL_CORE} ) {
3         chdir 't';
4         @INC = '../lib';
5     }
6 }
7
8 use strict;
9
10 BEGIN { $| = 1; $^W = 1; }
11
12 use Test::Simple tests => 3;
13
14 ok(1, 'compile');
15
16 ok(1);
17 ok(1, 'foo');