9 my $stash = Stash::Manip->new('Foo');
10 my $val = $stash->get_package_symbol('%foo');
11 is(ref($val), 'HASH', "got something");
13 is_deeply($stash->get_package_symbol('%foo'), {bar => 1},
14 "got the right variable");
18 my $stash = Stash::Manip->new('Bar');
19 my $val = $stash->get_package_symbol('@foo');
20 is(ref($val), 'ARRAY', "got something");
22 is_deeply($stash->get_package_symbol('@foo'), [1],
23 "got the right variable");