6 use Benchmark::Forking qw[cmpthese];
10 This compares the burden of a basic Moose
11 class to a basic Class::MOP class.
13 It is worth noting that the basic Moose
14 class will also create a type constraint
15 as well as export many subs, so this comparison
22 'w/out_moose' => sub {
23 eval 'package Bar; use metaclass;';
26 eval 'package Baz; use Moose;';