6 use Test::More tests => 2;
9 use_ok('Class::C3::XS');
14 This tests the classic diamond inheritence pattern.
38 use base ('Diamond_B', 'Diamond_C');
42 [ Class::C3::XS::calculateMRO('Diamond_D') ],
43 [ qw(Diamond_D Diamond_B Diamond_C Diamond_A) ],
44 '... got the right MRO for Diamond_D');