changelog and version bump
[gitmo/Package-Stash.git] / t / 005-isa.t
CommitLineData
b746972e 1#!/usr/bin/env perl
2use strict;
3use warnings;
4use Test::More;
5
6use Stash::Manip;
7
8{
9 package Foo;
10}
11
12{
13 package Bar;
14}
15
16my $stash = Stash::Manip->new('Foo');
17my @ISA = ('Bar');
18@{$stash->get_package_symbol('@ISA')} = @ISA;
19isa_ok('Foo', 'Bar');
20
21done_testing;