cffa0b0dfa842340fc6a83f611c0e1ae74f4487f
[p5sagit/p5-mst-13.2.git] / lib / File / Spec / t / tmpdir.t
1 use strict;
2 use Test;
3
4 # Grab all of the plain routines from File::Spec
5 use File::Spec;
6 use File::Spec::Win32;
7
8 plan tests => 3;
9
10 ok 1, 1, "Loaded";
11
12 my $num_keys = keys %ENV;
13 File::Spec->tmpdir;
14 ok scalar keys %ENV, $num_keys, "tmpdir() shouldn't change the contents of %ENV";
15
16 File::Spec::Win32->tmpdir;
17 ok scalar keys %ENV, $num_keys, "Win32->tmpdir() shouldn't change the contents of %ENV";