diff options
Diffstat (limited to 't/uni/universal.t')
-rw-r--r-- | t/uni/universal.t | 10 |
1 files changed, 2 insertions, 8 deletions
diff --git a/t/uni/universal.t b/t/uni/universal.t index c53f85382f..8f158e90b8 100644 --- 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è"); |