Acme-Cow-Interpreter

 view release on metacpan or  search on metacpan

Makefile.PL  view on Meta::CPAN

# -*- mode: perl; coding: us-ascii-unix -*-

use 5.008;              # required version of Perl
use strict;             # restrict unsafe constructs
use warnings;           # control optional warnings

use ExtUtils::MakeMaker;

# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.

WriteMakefile
  (
   (MM->can('signature_target') ? (SIGN => 1) : ()),
   NAME             => 'Acme::Cow::Interpreter',
   AUTHOR           => 'Peter John Acklam <pjacklam@gmail.com>',

   VERSION_FROM     => 'lib/Acme/Cow/Interpreter.pm',
   ABSTRACT_FROM    => 'lib/Acme/Cow/Interpreter.pm',

   # A hash of modules that are required to run Makefile.PL itself, but not to
   # run the distribution.

   'CONFIGURE_REQUIRES' => {
                            'ExtUtils::MakeMaker' => 6.58,
                           },

   # A hash of modules that are needed to build the module but not run it.

   'BUILD_REQUIRES'     => {
                           },

xt/release/pod-coverage.t  view on Meta::CPAN

use strict;
use warnings;

use Test::More;

# Ensure a recent version of Test::Pod::Coverage

my $min_tpc = 1.08;
eval "use Test::Pod::Coverage $min_tpc";
plan skip_all =>
  "Test::Pod::Coverage $min_tpc required for testing POD coverage"
  if $@;

# Test::Pod::Coverage doesn't require a minimum Pod::Coverage version,
# but older versions don't recognize some common documentation styles

my $min_pc = 0.18;
eval "use Pod::Coverage $min_pc";
plan skip_all => "Pod::Coverage $min_pc required for testing POD coverage"
  if $@;

all_pod_coverage_ok();

xt/release/pod-syntax.t  view on Meta::CPAN


use strict;
use warnings;

use Test::More;

# Ensure a recent version of Test::Pod

my $min_tp = 1.22;
eval "use Test::Pod $min_tp";
plan skip_all => "Test::Pod $min_tp required for testing POD" if $@;

all_pod_files_ok();

xt/release/portability.t  view on Meta::CPAN

    }
}

use strict;
use warnings;

use Test::More;

eval 'use Test::Portability::Files';

plan skip_all => 'Test::Portability::Files required for testing portability'
  if $@;

options(
        #use_file_find       => 1,
        test_amiga_length   => 1,
        test_ansi_chars     => 1,
        test_case           => 1,
        #test_dos_length     => 1,
        test_mac_length     => 1,
        test_one_dot        => 1,



( run in 0.449 second using v1.01-cache-2.11-cpan-0a6323c29d9 )