Version 0.22.
[gitmo/Class-C3.git] / t / 33_next_method_used_with_NEXT.t
index fba980d..b2e4843 100644 (file)
@@ -45,6 +45,8 @@ BEGIN {
     sub foo { 'Baz::foo => ' . (shift)->NEXT::foo }    
 }
 
+Class::C3::initialize();
+
 is(Foo->foo, 'Foo::foo', '... got the right value from Foo->foo');
 is(Fuz->foo, 'Fuz::foo => Foo::foo', '... got the right value from Fuz->foo');
 is(Bar->foo, 'Bar::foo => Foo::foo', '... got the right value from Bar->foo');