remove extraneous garbage from tests
[gitmo/Class-C3.git] / t / 05_MRO.t
index d3c6b77..2faeb6d 100644 (file)
@@ -3,12 +3,10 @@
 use strict;
 use warnings;
 
-use Test::More tests => 3;
+use Test::More tests => 2;
 
 BEGIN {
-    use lib 'opt', '../opt', '..';
-    use_ok('c3');
-    use_ok('t::lib::F');    
+    use_ok('t::lib::F');
 }
 
 =pod 
@@ -27,7 +25,7 @@ From the parrot test t/pmc/object-meths.t
 Class::C3::initialize();
 
 is_deeply(
-    [ c3::calculateMRO('t::lib::F') ],
+    [ Class::C3::calculateMRO('t::lib::F') ],
     [ qw(t::lib::F t::lib::C t::lib::D t::lib::A t::lib::B t::lib::E) ],
     '... got the right MRO for t::lib::F');