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