X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=benchmarks%2Fsimple_compile.pl;h=4b5b4a8c2a73d2f073b243f9f7acecf6f6b77c64;hb=ea77684a76e30c02b0cd5512e322e6e29a6ac8e3;hp=f12c518a36ec287876b65261174436e9c16e30bb;hpb=7623f7745394bab6122a18b42da2d35897510f2f;p=gitmo%2FMoose.git diff --git a/benchmarks/simple_compile.pl b/benchmarks/simple_compile.pl index f12c518..4b5b4a8 100644 --- a/benchmarks/simple_compile.pl +++ b/benchmarks/simple_compile.pl @@ -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;'; - }, + }, } );