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