From: Dave Rolsky Date: Sun, 5 Apr 2009 16:37:03 +0000 (-0500) Subject: one more spot still referring to compute_all_applicable_attributes X-Git-Tag: 0.80_01~7 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=a1bdc44315126086b66cee4524e40c771fa090f8;p=gitmo%2FClass-MOP.git one more spot still referring to compute_all_applicable_attributes --- diff --git a/t/073_make_mutable.t b/t/073_make_mutable.t index ae6210f..5212491 100644 --- a/t/073_make_mutable.t +++ b/t/073_make_mutable.t @@ -89,7 +89,7 @@ use Class::MOP; is_deeply([@supers], [$meta->superclasses], '... reset the superclasses okay'); ok( $meta->$_ , "... ${_} works") - for qw(get_meta_instance compute_all_applicable_attributes + for qw(get_meta_instance get_all_attributes class_precedence_list get_method_map ); lives_ok {$meta->make_immutable; } '... changed Baz to be immutable again'; @@ -118,7 +118,7 @@ use Class::MOP; dies_ok { $meta->superclasses('Foo') } '... set the superclasses'; ok( $meta->$_ , "... ${_} works") - for qw(get_meta_instance compute_all_applicable_attributes + for qw(get_meta_instance get_all_attributes class_precedence_list get_method_map ); } @@ -180,7 +180,7 @@ use Class::MOP; is_deeply([@supers], [$meta->superclasses], '... reset the superclasses okay'); ok( $meta->$_ , "... ${_} works") - for qw(get_meta_instance compute_all_applicable_attributes + for qw(get_meta_instance get_all_attributes class_precedence_list get_method_map ); }; @@ -213,7 +213,7 @@ use Class::MOP; dies_ok { $meta->superclasses('Foo') } '... set the superclasses'; ok( $meta->$_ , "... ${_} works") - for qw(get_meta_instance compute_all_applicable_attributes + for qw(get_meta_instance get_all_attributes class_precedence_list get_method_map ); }