moved all the metaclass cache stuff to Class::MOP so that we are not polluting the...
[gitmo/Class-MOP.git] / t / 010_self_introspection.t
index ec0533c..24572a5 100644 (file)
@@ -3,7 +3,7 @@
 use strict;
 use warnings;
 
-use Test::More tests => 189;
+use Test::More tests => 183;
 use Test::Exception;
 
 BEGIN {
@@ -50,8 +50,6 @@ my @class_mop_module_methods = qw(
 my @class_mop_class_methods = qw(
     meta
     
-    get_all_metaclasses get_all_metaclass_names get_all_metaclass_instances 
-    
     initialize reinitialize create create_anon_class
     
     instance_metaclass get_meta_instance
@@ -277,7 +275,8 @@ is_deeply(
     [ qw/
         Class::MOP::Class
         Class::MOP::Module
-        Class::MOP::Package                
+        Class::MOP::Package     
+        Class::MOP::Object           
     / ], 
     '... Class::MOP::Class->class_precedence_list == [ Class::MOP::Class Class::MOP::Module Class::MOP::Package ]');