tests and changelogging
[gitmo/Moose.git] / t / 010_basics / 008_wrapped_method_cxt_propagation.t
index 8e97669..ff8034a 100644 (file)
@@ -3,11 +3,8 @@
 use strict;
 use warnings;
 
-use Test::More tests => 8;
+use Test::More;
 
-BEGIN {
-    use_ok('Moose');
-}
 
 {
     package TouchyBase;
@@ -32,7 +29,7 @@ BEGIN {
 
     after qw/scalar_or_array void/ => sub {
         my $self = shift;
-        $self->inc;        
+        $self->inc;
     }
 }
 
@@ -58,3 +55,4 @@ foreach my $obj ( $base, $after ) {
     }
 }
 
+done_testing;