X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=gitmo%2FClass-C3.git;a=blobdiff_plain;f=t%2F05_MRO.t;h=2faeb6d0186f0c6a49e41d1862c8f70f77e6757f;hp=d3c6b77833ecb4b856d1642003261e472ce8dfcd;hb=ef29cd706106f8ab6e7b0c25e8dc832bb337c5ed;hpb=4dcc1329747eb410b61a876c10140d8cb3137cd2 diff --git a/t/05_MRO.t b/t/05_MRO.t index d3c6b77..2faeb6d 100644 --- a/t/05_MRO.t +++ b/t/05_MRO.t @@ -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');