Detabify tests.
Florian Ragwitz [Fri, 3 Jul 2009 02:37:19 +0000 (04:37 +0200)]
Making xt/author/tabs.t pass again.

t/010_basics/001_basic_class_setup.t
t/020_attributes/010_attribute_delegation.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');
 }
 
index eb05ac7..100ac3d 100644 (file)
@@ -262,7 +262,7 @@ is($car->stop, 'Engine::stop', '... got the right value from ->stop');
         my $self = shift;
 
         my $name = our $AUTOLOAD;
-        $name =~ s/.*://;              # strip fully-qualified portion
+        $name =~ s/.*://; # strip fully-qualified portion
 
         if (@_) {
             return $self->{$name} = shift;