hv_fetchs() support
[p5sagit/p5-mst-13.2.git] / lib / ExtUtils / t / xs.t
1 #!/usr/bin/perl -w
2
3 BEGIN {
4     if( $ENV{PERL_CORE} ) {
5         chdir 't';
6         @INC = ('../lib', 'lib/');
7     }
8     else {
9         unshift @INC, 't/lib/';
10     }
11 }
12 chdir 't';
13
14 use Test::More;
15 use MakeMaker::Test::Utils;
16
17 if( have_compiler() ) {
18     plan tests => 1;
19 }
20 else {
21     plan skip_all => "ExtUtils::CBuilder not installed or couldn't find a compiler";
22 }
23
24 pass("You have a compiler, isn't that great?");