Upgrade to File::Spec 0.85.
[p5sagit/p5-mst-13.2.git] / lib / File / Spec / t / Functions.t
CommitLineData
e021ab8e 1#!/usr/bin/perl -w
f505c983 2
e021ab8e 3use Test;
4use File::Spec::Functions qw/:ALL/;
5plan tests => 2;
f505c983 6
e021ab8e 7ok catfile('a','b','c'), File::Spec->catfile('a','b','c');
f505c983 8
e021ab8e 9# seems to return 0 or 1, so see if we can call it - 2003-07-07 tels
10ok case_tolerant(), '/^0|1$/';