[perl #24674]
[p5sagit/p5-mst-13.2.git] / t / op / universal.t
index f8c15d7..ebc22d1 100755 (executable)
@@ -9,7 +9,7 @@ BEGIN {
     $| = 1;
 }
 
-print "1..90\n";
+print "1..101\n";
 
 $a = {};
 bless $a, "Bob";
@@ -49,7 +49,7 @@ package main;
   sub test {
       print "not " unless $_[0];
       print "ok ", $i++;
-      print "# at ", (caller)[1], ", line ", (caller)[2] unless $_[0];
+      print " # at ", (caller)[1], ", line ", (caller)[2] unless $_[0];
       print "\n";
   }
 }
@@ -57,8 +57,12 @@ package main;
 $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");
 
 test $a->isa("Female");
 
@@ -68,6 +72,8 @@ test ! $a->isa("Male");
 
 test ! $a->isa('Programmer');
 
+test $a->isa("HASH");
+
 test $a->can("eat");
 test ! $a->can("sleep");
 test my $ref = $a->can("drink");        # returns a coderef
@@ -168,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 !$@;