summaryrefslogtreecommitdiff
path: root/cpan/dist/File-Spec/t/filefunc.t
blob: 6e70a497e95906fdc8549f92b6990ee85195f948 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!./perl

BEGIN {
    $^O = '';
#chdir 't' if -d 't';
#unshift @INC, '../lib';
}

print "1..1\n";

use File::Spec::Functions;

if (catfile('a','b','c') eq 'a/b/c') {
    print "ok 1\n";
} else {
    print "not ok 1\n";
}