Add another MOOSE_TEST_MD option, MooseX
[gitmo/Moose.git] / benchmarks / simple_compile.pl
index f12c518..4b5b4a8 100644 (file)
@@ -8,26 +8,26 @@ use Benchmark::Forking qw[cmpthese];
 =pod
 
 This compare the overhead of Class::MOP
-to the overhead of Moose. 
+to the overhead of Moose.
 
-The goal here is to see how much more 
+The goal here is to see how much more
 startup cost Moose adds to Class::MOP.
 
 NOTE:
-This benchmark may not be all that 
-relevant really, but it's helpful to 
+This benchmark may not be all that
+relevant really, but it's helpful to
 see maybe.
 
 =cut
 
-cmpthese(5_000, 
+cmpthese(5_000,
     {
         'w/out_moose' => sub {
             eval 'use Class::MOP;';
         },
         'w_moose' => sub {
             eval 'use Moose;';
-        },       
+        },
     }
 );