aTHX_ thing
[gitmo/Class-C3-XS.git] / t / 03_MRO.t
index a13294f..8ea22fe 100644 (file)
@@ -3,13 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 8;
+use Test::More tests => 2;
 
 BEGIN {
-    use_ok('Class::C3');
-    # uncomment this line, and re-run the
-    # test to see the normal p5 dispatch order
-    #$Class::C3::TURN_OFF_C3 = 1;
+    use_ok('Class::C3::XS');
 }
 
 =pod
@@ -57,61 +54,28 @@ Level 0                0 | A |
 
 {
     package Test::O;
-    use Class::C3;
-    
-    sub O_or_D { 'Test::O' }
-    sub O_or_F { 'Test::O' }    
+    our @ISA = qw//;
     
     package Test::F;
     use base 'Test::O';
-    use Class::C3;
-    
-    sub O_or_F { 'Test::F' }    
     
     package Test::E;
     use base 'Test::O';
-    use Class::C3;
         
     package Test::D;
     use base 'Test::O';    
-    use Class::C3;
     
-    sub O_or_D { 'Test::D' }
-    sub C_or_D { 'Test::D' }
-        
     package Test::C;
     use base ('Test::D', 'Test::F');
-    use Class::C3;    
 
-    sub C_or_D { 'Test::C' }
-    
     package Test::B;
     use base ('Test::E', 'Test::D');
-    use Class::C3;
         
     package Test::A;
     use base ('Test::B', 'Test::C');
-    use Class::C3;
 }
 
-Class::C3::initialize();
-
 is_deeply(
-    [ Class::C3::calculateMRO('Test::A') ],
+    [ Class::C3::XS::calculateMRO('Test::A') ],
     [ qw(Test::A Test::B Test::E Test::C Test::D Test::F Test::O) ],
     '... got the right MRO for Test::A');      
-    
-is(Test::A->O_or_D, 'Test::D', '... got the right method dispatch');    
-is(Test::A->O_or_F, 'Test::F', '... got the right method dispatch');   
-
-# NOTE: 
-# this test is particularly interesting because the p5 dispatch
-# would actually call Test::D before Test::C and Test::D is a
-# subclass of Test::C 
-is(Test::A->C_or_D, 'Test::C', '... got the right method dispatch');    
-
-Class::C3::uninitialize();
-
-is(Test::A->O_or_D, 'Test::O', '... old dispatch order is restored');    
-is(Test::A->O_or_F, 'Test::O', '... old dispatch order is restored');   
-is(Test::A->C_or_D, 'Test::D', '... old dispatch order is restored');