This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
More flexible argument understanding; add charblocks() and
[perl5.git] / lib / FindBin.t
CommitLineData
1a3850a5
GA
1#!./perl
2
3BEGIN {
4 chdir 't' if -d 't';
20822f61 5 @INC = '../lib';
1a3850a5
GA
6}
7
8print "1..1\n";
9
10use FindBin qw($Bin);
11
b695f709
JH
12print "# $Bin\n";
13
14print "not " unless $Bin =~ m,[/.]lib\]?$,;
1a3850a5 15print "ok 1\n";