kill passive voice in the trigger documentation
[gitmo/Moose.git] / t / 010_basics / 010_method_modifier_with_regexp.t
index 41f55cd..bc51d34 100644 (file)
@@ -3,11 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 9;
+use Test::More;
 use Test::Exception;
 
 
-
 {
 
     package Dog;
@@ -76,11 +75,12 @@ is( $Cat::AFTER_BARK_COUNTER,  2, 'after modifier is called twice' );
 
     ::dies_ok {
         around qr/bark.*/ => sub {};
-    } '... this is not currently supported';    
-    
-    ::dies_ok {    
+    } '... this is not currently supported';
+
+    ::dies_ok {
         after  qr/bark.*/ => sub {};
-    } '... this is not currently supported';    
+    } '... this is not currently supported';
 
 }
 
+done_testing;