Revision history for Mouse
-0.34
+0.34 Fri Sep 25 21:55:48 2009
* Make sure to work on 5.6.2 (gfx)
* Remove Class::Method::Modifiers dependency (gfx)
is $child_meta->find_method_by_name('child_method')->fully_qualified_name, 'Child::child_method';
is $child_meta->find_method_by_name('pawn')->fully_qualified_name, 'Class::pawn';
+{
+ local $TODO = 'should be Class::MY_CONST';
+ is( join(' ', sort map{ $_->fully_qualified_name } grep{ $_->package_name ne 'Mouse::Object' } $child_meta->get_all_methods),
+ join(' ', sort qw(
+ Child::bishop Child::child_method Child::meta
-is( join(' ', sort map{ $_->fully_qualified_name } grep{ $_->package_name ne 'Mouse::Object' } $child_meta->get_all_methods),
- join(' ', sort qw(
- Child::bishop Child::child_method Child::meta
-
- Class::MY_CONST Class::has_pawn Class::pawn Class::stub Class::stub_with_attr
- ))
-);
+ Class::MY_CONST Class::has_pawn Class::pawn Class::stub Class::stub_with_attr
+ ))
+ );
+}