summaryrefslogtreecommitdiff
path: root/t/mro
diff options
context:
space:
mode:
authorBrian Fraser <fraserbn@gmail.com>2011-07-07 04:35:35 -0300
committerFather Chrysostomos <sprout@cpan.org>2011-10-06 13:01:15 -0700
commit7ad9a4ff6c24efeda9bfd78912af50821bb2bada (patch)
tree37e22a60d7ea81d30f7959aff00851b95d64f7d6 /t/mro
parent119cacd042954e89b0fa6f0ac0f043feeb8a2e9c (diff)
downloadperl-7ad9a4ff6c24efeda9bfd78912af50821bb2bada.tar.gz
mro.(c|xs): Make warnings utf8-clean
Diffstat (limited to 't/mro')
-rw-r--r--t/mro/next_skip_utf8.t7
1 files changed, 2 insertions, 5 deletions
diff --git a/t/mro/next_skip_utf8.t b/t/mro/next_skip_utf8.t
index 9dd465990c..64e774575a 100644
--- a/t/mro/next_skip_utf8.t
+++ b/t/mro/next_skip_utf8.t
@@ -68,11 +68,8 @@ is(Diᚪၚd_D->ᕘ, 'Diᚪၚd_D::ᕘ => Diᚪၚd_C::ᕘ', '... skipped
is(Diᚪၚd_D->ᴮaȐ, 'Diᚪၚd_D::ᴮaȐ => Diᚪၚd_A::ᴮaȐ', '... skipped B & C and went to A correctly');
is(Diᚪၚd_D->바ź, 'Diᚪၚd_B::바ź => Diᚪၚd_A::바ź', '... called B method, skipped C and went to A correctly');
is(Diᚪၚd_D->buƵ, 'Diᚪၚd_D::buƵ => Diᚪၚd_B::바ź => Diᚪၚd_A::바ź', '... called D method dispatched to , different method correctly');
-TODO: {
- local our $TODO = "Warnings aren't clean yet";
- eval { Diᚪၚd_D->fuz };
- like($@, qr/^No next::method 'fuz' found for Diᚪၚd_D/u, '... cannot re-dispatch to a method which is not there');
-}
+eval { Diᚪၚd_D->fuz };
+like($@, qr/^No next::method 'fuz' found for Diᚪၚd_D/u, '... cannot re-dispatch to a method which is not there');
is(Diᚪၚd_D->woz, 'Diᚪၚd_D::woz can => 1', '... can re-dispatch figured out correctly');
is(Diᚪၚd_D->noz, 'Diᚪၚd_D::noz can => 0', '... cannot re-dispatch figured out correctly');