The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.
#!/usr/bin/perl

use strict;
use warnings;

use Test::More;

use_ok 'Cache::Ref::Null';

my $cache = Cache::Ref::Null->new;

is( $cache->get("foo"), undef, "no value for get" );
$cache->set("foo" => 42);
is( $cache->get("foo"), undef, "no value for after set" );

done_testing;

# ex: set sw=4 et: