From: Dave Rolsky Date: Thu, 4 Dec 2008 20:35:04 +0000 (+0000) Subject: add a description to a test which did not have one X-Git-Tag: 0.71_02~17 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=100bff34e4a2bd22ade336eee7d60ac153701f4a;p=gitmo%2FClass-MOP.git add a description to a test which did not have one --- diff --git a/t/070_immutable_metaclass.t b/t/070_immutable_metaclass.t index cfdb278..5d199af 100644 --- a/t/070_immutable_metaclass.t +++ b/t/070_immutable_metaclass.t @@ -63,7 +63,8 @@ use Class::MOP; [ Scalar::Util::blessed($meta) ], '... immutable_metaclass superclasses are correct' ); - ok($immutable_metaclass->has_method('get_mutable_metaclass_name')); + ok($immutable_metaclass->has_method('get_mutable_metaclass_name'), + 'immutable metaclass has get_mutable_metaclass_name method'); }