summaryrefslogtreecommitdiffstats
path: root/t/02-extension.t
diff options
context:
space:
mode:
Diffstat (limited to 't/02-extension.t')
-rw-r--r--t/02-extension.t7
1 files changed, 5 insertions, 2 deletions
diff --git a/t/02-extension.t b/t/02-extension.t
index 2f95f15..f639cfa 100644
--- a/t/02-extension.t
+++ b/t/02-extension.t
@@ -13,8 +13,11 @@ use Test::Exception;
use Symbol 'gensym';
- sub namespace {
- $_[0]->{namespace} ||= {}
+ sub new {
+ my $class = shift;
+ my $self = $class->SUPER::new(@_);
+ $self->{namespace} = {};
+ return $self;
}
sub add_package_symbol {