This is a live mirror of the Perl 5 development currently hosted at
https://github.com/perl/perl5
https://perl5.git.perl.org
/
perl5.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d35ff3b
)
uni/universal.t tests passing
author
Father Chrysostomos
<sprout@cpan.org>
Thu, 6 Oct 2011 06:32:16 +0000
(23:32 -0700)
committer
Father Chrysostomos
<sprout@cpan.org>
Thu, 6 Oct 2011 20:01:21 +0000
(13:01 -0700)
t/uni/universal.t
patch
|
blob
|
blame
|
history
diff --git
a/t/uni/universal.t
b/t/uni/universal.t
index
c53f853
..
8f158e9
100644
(file)
--- a/
t/uni/universal.t
+++ b/
t/uni/universal.t
@@
-51,17
+51,11
@@
package main;
$a = nèw Àlìcè;
ok $a->isa("Àlìcè");
-TODO: {
- local $TODO = "mro";
- ok $a->isa("main::Àlìcè"); # check that alternate class names work
-}
+ok $a->isa("main::Àlìcè"); # check that alternate class names work
ok(("main::Àlìcè"->nèw)->isa("Àlìcè"));
ok $a->isa("Bòb");
-TODO: {
- local $TODO = "mro";
- ok $a->isa("main::Bòb");
-}
+ok $a->isa("main::Bòb");
ok $a->isa("Fèmàlè");