revert vivication changes for now again
[gitmo/Package-Stash-XS.git] / t / 05-isa.t
CommitLineData
b746972e 1#!/usr/bin/env perl
2use strict;
3use warnings;
4use Test::More;
5
e94260da 6use Package::Stash;
b746972e 7
8{
9 package Foo;
10}
11
12{
13 package Bar;
14}
15
e94260da 16my $stash = Package::Stash->new('Foo');
b746972e 17my @ISA = ('Bar');
67b17048 18@{$stash->get_package_symbol('@ISA')} = @ISA;
b746972e 19isa_ok('Foo', 'Bar');
20
21done_testing;