summaryrefslogtreecommitdiffstats
path: root/t/002-extension.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/002-extension.t
parent4950f5513d1552328128c0a90824ab9074995cd8 (diff)
downloadpackage-stash-e94260dab724974551751dbdda9c4c9abde76e6e.tar.gz
package-stash-e94260dab724974551751dbdda9c4c9abde76e6e.zip
rename Stash::Manip -> Package::Stash
Diffstat (limited to 't/002-extension.t')
-rw-r--r--t/002-extension.t10
1 files changed, 5 insertions, 5 deletions
diff --git a/t/002-extension.t b/t/002-extension.t
index 4a9e7c1..2f95f15 100644
--- a/t/002-extension.t
+++ b/t/002-extension.t
@@ -5,11 +5,11 @@ use Test::More;
use Test::Exception;
{
- package My::Stash::Manip;
+ package My::Package::Stash;
use strict;
use warnings;
- use base 'Stash::Manip';
+ use base 'Package::Stash';
use Symbol 'gensym';
@@ -29,10 +29,10 @@ use Test::Exception;
}
# No actually package Foo exists :)
-my $foo_stash = My::Stash::Manip->new('Foo');
+my $foo_stash = My::Package::Stash->new('Foo');
-isa_ok($foo_stash, 'My::Stash::Manip');
-isa_ok($foo_stash, 'Stash::Manip');
+isa_ok($foo_stash, 'My::Package::Stash');
+isa_ok($foo_stash, 'Package::Stash');
ok(!defined($Foo::{foo}), '... the %foo slot has not been created yet');
ok(!$foo_stash->has_package_symbol('%foo'), '... the foo_stash agrees');