Lines Matching refs:tmpdir
18 File::Spec->tmpdir;
19 is scalar keys %ENV, $num_keys, "tmpdir() shouldn't change the contents of %ENV";
26 File::Spec::Win32->tmpdir;
27 is(scalar keys %ENV, 0, "Win32->tmpdir() shouldn't change the contents of %ENV");
30 File::Spec::Win32->tmpdir;
31 is(scalar keys %ENV, $num_keys, "Win32->tmpdir() shouldn't change the contents of %ENV");
33 # Changing tmpdir dynamically
41 my $tmpdir1 = $_->tmpdir;
45 my $tmpdir2 = $_->tmpdir;
46 isnt $tmpdir2, $tmpdir1, "$_->tmpdir works with changing env";
51 File::Spec->file_name_is_absolute(File::Spec->tmpdir()),
52 "tmpdir() always returns an absolute path"