X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2Fop%2Funiversal.t;h=efda2a59be6a9fff172abc047ae1eec5f68801c3;hb=444e39b5b9f36cd0f60283ca4c60fc108157921f;hp=a0a74ec4b2aa2cf96a096f1cea6e71df2018c1e0;hpb=46e4b22b349f2fc617bcb5c937a01a6be391d76f;p=p5sagit%2Fp5-mst-13.2.git diff --git a/t/op/universal.t b/t/op/universal.t index a0a74ec..efda2a5 100755 --- a/t/op/universal.t +++ b/t/op/universal.t @@ -5,11 +5,11 @@ BEGIN { chdir 't' if -d 't'; - unshift @INC, '../lib' if -d '../lib'; + @INC = '../lib'; $| = 1; } -print "1..80\n"; +print "1..87\n"; $a = {}; bless $a, "Bob"; @@ -24,7 +24,8 @@ package Female; package Alice; @ISA=qw(Bob Female); -sub drink {} +sub sing; +sub drink { return "drinking " . $_[1] } sub new { bless {} } $Alice::VERSION = 2.718; @@ -44,8 +45,9 @@ $Alice::VERSION = 2.718; package main; -my $i = 2; -sub test { print "not " unless shift; print "ok $i\n"; $i++; } +{ my $i = 2; + sub test { print "not " unless shift; print "ok $i\n"; $i++; } +} $a = new Alice; @@ -61,11 +63,13 @@ test ! $a->isa("Male"); test ! $a->isa('Programmer'); -test $a->can("drink"); - test $a->can("eat"); - test ! $a->can("sleep"); +test my $ref = $a->can("drink"); # returns a coderef +test $a->$ref("tea") eq "drinking tea"; # ... which works +test $ref = $a->can("sing"); +eval { $a->$ref() }; +test $@; # ... but not if no actual subroutine test (!Cedric->isa('Programmer')); @@ -119,6 +123,14 @@ if ('a' lt 'A') { test $a->isa("UNIVERSAL"); +test ! UNIVERSAL::isa([], "UNIVERSAL"); + +test ! UNIVERSAL::can({}, "can"); + +test UNIVERSAL::isa(Alice => "UNIVERSAL"); + +test UNIVERSAL::can(Alice => "can") == \&UNIVERSAL::can; + # now use UNIVERSAL.pm and see what changes eval "use UNIVERSAL";