X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F060_compat%2F003_foreign_inheritence.t;h=2b9751c3123a37db7c544babd1c43074e5d86d84;hb=ab76842ea6760e3e08b2455b63aa55888b70deec;hp=5442e3f7c81c00a467ed7ef9738bcb604ac24bd6;hpb=be771c43c0d5fe8f9ac2b4e7f3a6a5c7e792aba9;p=gitmo%2FMoose.git diff --git a/t/060_compat/003_foreign_inheritence.t b/t/060_compat/003_foreign_inheritence.t index 5442e3f..2b9751c 100644 --- a/t/060_compat/003_foreign_inheritence.t +++ b/t/060_compat/003_foreign_inheritence.t @@ -81,6 +81,11 @@ lives_ok { Old::Bucket::Nose->meta->make_immutable(debug => 0); } 'Immutability on Moose class extending Class::MOP class ok'; -lives_ok { - SubClass2::extends('MyBase'); -} 'Can subclass the same non-Moose class twice with different metaclasses'; +TODO: { + local $TODO = 'Needs MRO::Compat support'; + + lives_ok { + SubClass2::extends('MyBase'); + } 'Can subclass the same non-Moose class twice with different metaclasses'; + +}