summaryrefslogtreecommitdiff
path: root/lib/Test/Simple/t/simple.t
blob: de0f9f522ed1a9677ed1cca1d3c5ed1f361a5896 (plain)
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');