Hack to remove insecure directories from PATH so test will run.
[p5sagit/p5-mst-13.2.git] / t / lib / filefunc.t
CommitLineData
f505c983 1#!./perl
2
3BEGIN {
4 $^O = '';
5 chdir 't' if -d 't';
20822f61 6 @INC = '../lib';
f505c983 7}
8
9print "1..1\n";
10
11use File::Spec::Functions;
12
13if (catfile('a','b','c') eq 'a/b/c') {
14 print "ok 1\n";
15} else {
16 print "not ok 1\n";
17}