summaryrefslogtreecommitdiff
path: root/lib/FindBin.t
blob: ebca15b560795c8b951ad1f4960860260eec9377 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!./perl

BEGIN {
    # Can't chdir in BEGIN before FindBin runs, as it then can't find us.
    @INC = -d 't' ? 'lib' : '../lib';
}

print "1..1\n";

use FindBin qw($Bin);

print "# $Bin\n";

print "not " unless $Bin =~ m,[/.]lib\]?$,;
print "ok 1\n";