diff options
Diffstat (limited to 'contrib/perl5/t/lib/filefunc.t')
-rwxr-xr-x | contrib/perl5/t/lib/filefunc.t | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/contrib/perl5/t/lib/filefunc.t b/contrib/perl5/t/lib/filefunc.t deleted file mode 100755 index 9268122..0000000 --- a/contrib/perl5/t/lib/filefunc.t +++ /dev/null @@ -1,17 +0,0 @@ -#!./perl - -BEGIN { - $^O = ''; - chdir 't' if -d 't'; - @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"; -} |