add a warning for immutablizing a class with mutable ancestors
[gitmo/Moose.git] / t / 010_basics / 001_basic_class_setup.t
index acfde73..00d709c 100644 (file)
@@ -31,14 +31,14 @@ dies_ok {
 can_ok('Foo', 'does');
 
 foreach my $function (qw(
-                                                extends
-                        has
-                            before after around
-                            blessed confess
-                                                type subtype as where
-                                                coerce from via
-                                                find_type_constraint
-                            )) {
+                         extends
+                         has
+                         before after around
+                         blessed confess
+                         type subtype as where
+                         coerce from via
+                         find_type_constraint
+                         )) {
     ok(!Foo->meta->has_method($function), '... the meta does not treat "' . $function . '" as a method');
 }