Cross Reference: Functions.t
xref
: /
osnet-11
/
usr
/
src
/
cmd
/
perl
/
5.8.4
/
distrib
/
lib
/
File
/
Spec
/
t
/
Functions.t
Home
History
Annotate
Line#
Navigate
Download
Search
only in
./
#!/
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$/'
;