diff options
Diffstat (limited to 'contrib/perl5/t/lib/filecache.t')
-rwxr-xr-x | contrib/perl5/t/lib/filecache.t | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/contrib/perl5/t/lib/filecache.t b/contrib/perl5/t/lib/filecache.t deleted file mode 100755 index a97fdd5..0000000 --- a/contrib/perl5/t/lib/filecache.t +++ /dev/null @@ -1,25 +0,0 @@ -#!./perl - -BEGIN { - chdir 't' if -d 't'; - @INC = '../lib'; -} - -print "1..1\n"; - -use FileCache; - -# This is really not a complete test as I don't bother to open enough -# files to make real swapping of open filedescriptor happen. - -$path = "foo"; -cacheout $path; - -print $path "\n"; - -close $path; - -print "not " unless -f $path; -print "ok 1\n"; - -unlink $path; |