blob: 7297e9d6dd1db7cca5452822e9d2d7ac7634d054 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
BEGIN {
if( $ENV{PERL_CORE} ) {
chdir 't';
@INC = '../lib';
}
}
use strict;
BEGIN { $| = 1; $^W = 1; }
use Test::Simple tests => 3;
ok(1, 'compile');
ok(1);
ok(1, 'foo');
|