The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
# vim: set ft=perl :

use Test::More tests => 1;
use Class::Hash;

my $hash = Class::Hash->new({ fetch => 1, store => 1 });

is_deeply(Class::Hash->options($hash), { fetch => 1, store => 1 }, 'default options');