module_name => 'Class::MOP',
license => 'perl',
requires => {
- 'Algorithm::C3' => '0.01',
'Scalar::Util' => '1.18',
'Sub::Name' => '0.02',
'Carp' => '0.01',
- 'B' => '1.09',
+ 'B' => '0',
'Clone' => '0.18',
},
optional => {
Revision history for Perl extension Class-MOP.
+0.12
+ - reduced the dependency on B, no need to always
+ have the latest
+
0.11 Mon Feb. 20, 2006
* examples/
- added example of changing method dispatch order to C3
use strict;
use warnings;
-use Test::More tests => 5;
+use Test::More;
use File::Spec;
-BEGIN {
+BEGIN {
+ eval "use Algorithm::C3";
+ plan skip_all => "Algorithm::C3 required for this test" if $@;
+ plan tests => 5;
+
use_ok('Class::MOP');
require_ok(File::Spec->catdir('examples', 'C3MethodDispatchOrder.pod'));
}