X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fop%2Funiversal.t;h=b7d452fc5a643d7facc8ae9946dfeec2505f5139;hb=e24631be6ac297b562086a055de17c5bd4247797;hp=2e31d78b1986612608145175a49ff8e0d92c66ff;hpb=301daebccb7cf8ef4420fe0ae3cdddd299f11568;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/op/universal.t b/t/op/universal.t index 2e31d78..b7d452f 100755 --- a/t/op/universal.t +++ b/t/op/universal.t @@ -9,7 +9,7 @@ BEGIN { $| = 1; } -print "1..93\n"; +print "1..101\n"; $a = {}; bless $a, "Bob"; @@ -59,6 +59,8 @@ $a = new Alice; test $a->isa("Alice"); test $a->isa("main::Alice"); # check that alternate class names work +test(("main::Alice"->new)->isa("Alice")); + test $a->isa("Bob"); test $a->isa("main::Bob"); @@ -119,7 +121,7 @@ test ! $a->can("export_tags"); # a method in Exporter test (eval { $a->VERSION }) == 2.718; test ! (eval { $a->VERSION(2.719) }) && - $@ =~ /^Alice version 2.71(?:9|8999\d+) required--this is only version 2.718 at /; + $@ =~ /^Alice version 2.719 \(2\.719\.0\) required--this is only version 2.718 \(2\.718\.0\) at /; test (eval { $a->VERSION(2.718) }) && ! $@; @@ -172,3 +174,30 @@ test ! UNIVERSAL::isa("\xff\xff\xff\0", 'HASH'); main::test can( "Pickup", "can" ) == \&UNIVERSAL::can; main::test VERSION "UNIVERSAL" ; } + +{ + # test isa() and can() on magic variables + "Human" =~ /(.*)/; + test $1->isa("Human"); + test $1->can("eat"); + package HumanTie; + sub TIESCALAR { bless {} } + sub FETCH { "Human" } + tie my($x), "HumanTie"; + ::test $x->isa("Human"); + ::test $x->can("eat"); +} + +# bugid 3284 +# a second call to isa('UNIVERSAL') when @ISA is null failed due to caching + +@X::ISA=(); +my $x = {}; bless $x, 'X'; +test $x->isa('UNIVERSAL'); +test $x->isa('UNIVERSAL'); + + +# Check that the "historical accident" of UNIVERSAL having an import() +# method doesn't effect anyone else. +eval { Some::Package->import("bar") }; +test !$@;