remove trailing whitespace
[gitmo/Moose.git] / t / 020_attributes / 017_attribute_traits_n_meta.t
index c4dc206..2aa1114 100644 (file)
@@ -12,28 +12,28 @@ use Test::Moose;
 {
     package My::Meta::Attribute::DefaultReadOnly;
     use Moose;
-    
+
     extends 'Moose::Meta::Attribute';
-    
+
     around 'new' => sub {
         my $next = shift;
         my ($self, $name, %options) = @_;
-        $options{is} = 'ro' 
+        $options{is} = 'ro'
             unless exists $options{is};
         $next->($self, $name, %options);
-    };    
+    };
 }
 
 {
     package My::Attribute::Trait;
     use Moose::Role;
-    
+
     has 'alias_to' => (is => 'ro', isa => 'Str');
-    
+
     after 'install_accessors' => sub {
         my $self = shift;
         $self->associated_class->add_method(
-            $self->alias_to, 
+            $self->alias_to,
             $self->get_read_method_ref
         );
     };
@@ -42,7 +42,7 @@ use Test::Moose;
 {
     package My::Class;
     use Moose;
-    
+
     has 'bar' => (
         metaclass => 'My::Meta::Attribute::DefaultReadOnly',
         traits    => [qw/My::Attribute::Trait/],