This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
bump base.pm $VERSION and un-CUSTOMISE
[perl5.git] / ext / FileCache / t / 05override.t
CommitLineData
d9268716
S
1#!./perl
2
3use FileCache;
4
5END { unlink("Foo_Bar") }
6
7use Test::More tests => 1;
8
9{# Test 5: that close is overridden properly within the caller
10 cacheout local $_ = "Foo_Bar";
11 print $_ "Hello World\n";
12 close($_);
13 ok(!fileno($_));
14}