blob: 457f53cb6fa2f3948bdf28c2ea00643936ccf062 (
plain)
1
2
3
4
5
6
7
8
9
10
|
#!/usr/bin/perl -w
use Test;
use File::Spec::Functions qw/:ALL/;
plan tests => 2;
ok catfile('a','b','c'), File::Spec->catfile('a','b','c');
# seems to return 0 or 1, so see if we can call it - 2003-07-07 tels
ok case_tolerant(), '/^0|1$/';
|