summaryrefslogtreecommitdiff
path: root/lib/FindBin.t
blob: 36e142c476e15d08c1937553a24eca56fabf84fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!./perl

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

print "1..2\n";

use FindBin qw($Bin);

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

$0 = "-";
FindBin::again();

print "not " if $FindBin::Script ne "-";
print "ok 2\n";