summaryrefslogtreecommitdiffstats
path: root/t/isa.t
diff options
context:
space:
mode:
Diffstat (limited to 't/isa.t')
-rw-r--r--t/isa.t22
1 files changed, 22 insertions, 0 deletions
diff --git a/t/isa.t b/t/isa.t
new file mode 100644
index 0000000..ce852a6
--- /dev/null
+++ b/t/isa.t
@@ -0,0 +1,22 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use lib 't/lib';
+use Test::More;
+
+use Package::Stash;
+
+{
+ package Foo;
+}
+
+{
+ package Bar;
+}
+
+my $stash = Package::Stash->new('Foo');
+my @ISA = ('Bar');
+@{$stash->get_or_add_symbol('@ISA')} = @ISA;
+isa_ok('Foo', 'Bar');
+
+done_testing;