X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F05-isa.t;h=ce852a661116edc37e8464568a54712949dd2f5f;hb=409b55840839ef295ad62a21db54776df00b81ba;hp=3198fb15cdbbd05d2e61efe1ee162782741bb6a1;hpb=67b1704808e62f27210fe992df9c45b232fe9d5b;p=gitmo%2FPackage-Stash.git diff --git a/t/05-isa.t b/t/05-isa.t index 3198fb1..ce852a6 100644 --- a/t/05-isa.t +++ b/t/05-isa.t @@ -1,6 +1,7 @@ #!/usr/bin/env perl use strict; use warnings; +use lib 't/lib'; use Test::More; use Package::Stash; @@ -15,7 +16,7 @@ use Package::Stash; my $stash = Package::Stash->new('Foo'); my @ISA = ('Bar'); -@{$stash->get_package_symbol('@ISA')} = @ISA; +@{$stash->get_or_add_symbol('@ISA')} = @ISA; isa_ok('Foo', 'Bar'); done_testing;