summaryrefslogtreecommitdiffstats
path: root/t/004-get.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2010-05-14 11:39:56 -0500
committerJesse Luehrs <doy@tozt.net>2010-05-14 11:39:56 -0500
commite94260dab724974551751dbdda9c4c9abde76e6e (patch)
tree88a993f72d4586684f08c9569b036ed8ea0ad7e6 /t/004-get.t
parent4950f5513d1552328128c0a90824ab9074995cd8 (diff)
downloadpackage-stash-e94260dab724974551751dbdda9c4c9abde76e6e.tar.gz
package-stash-e94260dab724974551751dbdda9c4c9abde76e6e.zip
rename Stash::Manip -> Package::Stash
Diffstat (limited to 't/004-get.t')
-rw-r--r--t/004-get.t6
1 files changed, 3 insertions, 3 deletions
diff --git a/t/004-get.t b/t/004-get.t
index c38ae65..15e252f 100644
--- a/t/004-get.t
+++ b/t/004-get.t
@@ -3,10 +3,10 @@ use strict;
use warnings;
use Test::More;
-use Stash::Manip;
+use Package::Stash;
{
- my $stash = Stash::Manip->new('Foo');
+ my $stash = Package::Stash->new('Foo');
my $val = $stash->get_package_symbol('%foo');
is(ref($val), 'HASH', "got something");
$val->{bar} = 1;
@@ -15,7 +15,7 @@ use Stash::Manip;
}
{
- my $stash = Stash::Manip->new('Bar');
+ my $stash = Package::Stash->new('Bar');
my $val = $stash->get_package_symbol('@foo');
is(ref($val), 'ARRAY', "got something");
push @$val, 1;