perl/ext/FileCache/t/01open.t
Yves Orton eaf344cfb4 ext/FileCache/t/ - fixup paralleism issues in tests
Different test files used the same files for their tests,
causing conflicts and test failures in parallel mode.
2022-12-26 11:31:34 +01:00

19 lines
352 B
Perl

#!./perl
use FileCache;
our @files;
BEGIN { @files = map { "open_$_" } qw(foo bar baz quux Foo_Bar) }
END { 1 while unlink @files }
use Test::More tests => 1;
{# Test 1: that we can open files
for my $path ( @files ){
cacheout $path;
print $path "$path 1\n";
close $path;
}
ok(scalar(map { -f } @files) == scalar(@files));
}