ExtUtils-Autoconf

 view release on metacpan or  search on metacpan

t/class.t  view on Meta::CPAN


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 distribution
 view release on metacpan -  search on metacpan

( run in 1.125 second using v1.00-cache-2.02-grep-82fe00e-cpan-da92000dfeb )