summaryrefslogtreecommitdiffstats
path: root/t/003-io.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/003-io.t
parent4950f5513d1552328128c0a90824ab9074995cd8 (diff)
downloadpackage-stash-e94260dab724974551751dbdda9c4c9abde76e6e.tar.gz
package-stash-e94260dab724974551751dbdda9c4c9abde76e6e.zip
rename Stash::Manip -> Package::Stash
Diffstat (limited to 't/003-io.t')
-rw-r--r--t/003-io.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/003-io.t b/t/003-io.t
index a41b2ae..43a7dd8 100644
--- a/t/003-io.t
+++ b/t/003-io.t
@@ -18,10 +18,10 @@ use Test::Exception;
sub bar { }
}
-use Stash::Manip;
+use Package::Stash;
{
- my $stash = Stash::Manip->new('Foo');
+ my $stash = Package::Stash->new('Foo');
ok($stash->has_package_symbol('&foo'), "has &foo");
ok($stash->has_package_symbol('foo'), "has foo");
$stash->remove_package_symbol('&foo');
@@ -30,7 +30,7 @@ use Stash::Manip;
}
{
- my $stash = Stash::Manip->new('Bar');
+ my $stash = Package::Stash->new('Bar');
ok($stash->has_package_symbol('&bar'), "has &bar");
ok($stash->has_package_symbol('bar'), "has bar");
$stash->remove_package_symbol('bar');
@@ -39,7 +39,7 @@ use Stash::Manip;
}
{
- my $stash = Stash::Manip->new('Baz');
+ my $stash = Package::Stash->new('Baz');
lives_ok {
$stash->add_package_symbol('baz', *Foo::foo{IO});
} "can add an IO symbol";