Clear up test based on line number differences between the core and the
[p5sagit/p5-mst-13.2.git] / lib / Test / Simple / t / useing.t
CommitLineData
33459055 1BEGIN {
a9153838 2 if( $ENV{PERL_CORE} ) {
3 chdir 't';
4 @INC = '../lib';
5 }
33459055 6}
d020a79a 7
33459055 8use Test::More tests => 5;
d020a79a 9
33459055 10require_ok('Test::Builder');
11require_ok("Test::More");
12require_ok("Test::Simple");
13
14{
15 package Foo;
16 use Test::More import => [qw(ok is can_ok)];
17 can_ok('Foo', qw(ok is can_ok));
18 ok( !Foo->can('like'), 'import working properly' );
19}