ExtUtils-Autoconf
view release on metacpan - search on metacpan
view release on metacpan or search on metacpan
use strict;
use warnings;
use Symbol qw(gensym);
use File::Which qw(which);
use Test::More tests => 21;
use Test::Exception;
use ExtUtils::Autoconf;
{
local @ARGV = ('t/autoconf', (which('autoconf'))[0], (which('autoheader'))[0]);
lives_ok(sub {
ExtUtils::Autoconf->run_autogen;
}, 'run_autogen');
ok( -f 't/autoconf/config.h.in', 'config.h.in exists' );
ok( -f 't/autoconf/configure', 'configure exists' );
lives_ok(sub {
ExtUtils::Autoconf->run_configure;
view all matches for this distributionview release on metacpan - search on metacpan
( run in 0.898 second using v1.00-cache-2.02-grep-82fe00e-cpan-c9a218a2bbc )