summaryrefslogtreecommitdiffstats
path: root/t/005-isa.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/005-isa.t
parent4950f5513d1552328128c0a90824ab9074995cd8 (diff)
downloadpackage-stash-e94260dab724974551751dbdda9c4c9abde76e6e.tar.gz
package-stash-e94260dab724974551751dbdda9c4c9abde76e6e.zip
rename Stash::Manip -> Package::Stash
Diffstat (limited to 't/005-isa.t')
-rw-r--r--t/005-isa.t4
1 files changed, 2 insertions, 2 deletions
diff --git a/t/005-isa.t b/t/005-isa.t
index d21c7a7..3198fb1 100644
--- a/t/005-isa.t
+++ b/t/005-isa.t
@@ -3,7 +3,7 @@ use strict;
use warnings;
use Test::More;
-use Stash::Manip;
+use Package::Stash;
{
package Foo;
@@ -13,7 +13,7 @@ use Stash::Manip;
package Bar;
}
-my $stash = Stash::Manip->new('Foo');
+my $stash = Package::Stash->new('Foo');
my @ISA = ('Bar');
@{$stash->get_package_symbol('@ISA')} = @ISA;
isa_ok('Foo', 'Bar');