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