package CHI::t::Driver::CacheCache; BEGIN { $CHI::t::Driver::CacheCache::VERSION = '0.50'; } use strict; use warnings; use CHI::Test; use File::Temp qw(tempdir); use base qw(CHI::t::Driver); my $root_dir; sub supports_expires_on_backend { 1 } sub required_modules { return { 'Cache::Cache' => undef, 'Cache::FileCache' => undef }; } sub new_cache_options { my $self = shift; $root_dir ||= tempdir( "chi-driver-cachecache-XXXX", TMPDIR => 1, CLEANUP => 1 ); return ( $self->SUPER::new_cache_options(), cc_class => 'Cache::FileCache', cc_options => { cache_root => $root_dir } ); } sub set_standard_keys_and_values { my ($self) = @_; my ( $keys, $values ) = $self->SUPER::set_standard_keys_and_values(); # Cache::FileCache apparently cannot handle key = 0 $keys->{'zero'} = 'zero'; return ( $keys, $values ); } # Skip multiple process test - Cache::FileCache will hit occasional rename failures under this test sub test_multiple_procs { } 1;