skip test if db doesn't have null key support
[p5sagit/p5-mst-13.2.git] / t / lib / filefunc.t
CommitLineData
f505c983 1#!./perl
2
3BEGIN {
4 $^O = '';
5 chdir 't' if -d 't';
6 unshift @INC, '../lib';
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}