From e94260dab724974551751dbdda9c4c9abde76e6e Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Fri, 14 May 2010 11:39:56 -0500 Subject: rename Stash::Manip -> Package::Stash --- t/005-isa.t | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 't/005-isa.t') 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'); -- cgit v1.2.3-54-g00ecf