Acme-BadFont

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

  },
);

my %MM_ARGS = (
);

## BOILERPLATE ###############################################################
require ExtUtils::MakeMaker;
(do './maint/Makefile.PL.include' or die $@) unless -f 'META.yml';

# have to do this since old EUMM dev releases miss the eval $VERSION line
my $eumm_version  = eval $ExtUtils::MakeMaker::VERSION;
my $mymeta        = $eumm_version >= 6.57_02;
my $mymeta_broken = $mymeta && $eumm_version < 6.57_07;

($MM_ARGS{NAME} = $META{name}) =~ s/-/::/g;
($MM_ARGS{VERSION_FROM} = "lib/$MM_ARGS{NAME}.pm") =~ s{::}{/}g;
$META{license} = [ $META{license} ]
  if $META{license} && !ref $META{license};
$MM_ARGS{LICENSE} = $META{license}[0]
  if $META{license} && $eumm_version >= 6.30;
$MM_ARGS{NO_MYMETA} = 1

t/basic.t  view on Meta::CPAN

use strict;
use warnings;
use Test::More;

my @warnings;
{
  local $SIG{__WARN__} = sub { push @warnings, @_ };
  eval '#line '.(__LINE__+1).' "'.__FILE__.q{"
    use Acme::BadFont;
    cmp_ok "1OO" + 1, '==', 0+"I0I";
    cmp_ok "I.S" * 2, '==', 0+"E";
    1;
  } or die $@;
}
is join('', @warnings), '', 'no warnings';

done_testing;



( run in 0.931 second using v1.01-cache-2.11-cpan-ceb78f64989 )