Acme-Array-MaxSize

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

   "name" : "Acme-Array-MaxSize",
   "no_index" : {
      "directory" : [
         "t",
         "inc"
      ]
   },
   "prereqs" : {
      "build" : {
         "requires" : {
            "Test::More" : "0"
         }
      },
      "configure" : {
         "requires" : {
            "ExtUtils::MakeMaker" : "0"
         }
      },
      "runtime" : {
         "requires" : {
            "parent" : "0",

META.yml  view on Meta::CPAN

---
abstract: 'Limit the maximal size your arrays can get.'
author:
  - 'E. Choroba <choroba@cpan.org>'
build_requires:
  Test::More: '0'
configure_requires:
  ExtUtils::MakeMaker: '0'
dynamic_config: 1
generated_by: 'ExtUtils::MakeMaker version 7.24, CPAN::Meta::Converter version 2.150010'
license: artistic_2
meta-spec:
  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: '1.4'
name: Acme-Array-MaxSize
no_index:

Makefile.PL  view on Meta::CPAN

    AUTHOR           => q{E. Choroba <choroba@cpan.org>},
    VERSION_FROM     => 'lib/Acme/Array/MaxSize.pm',
    ABSTRACT_FROM    => 'lib/Acme/Array/MaxSize.pm',
    LICENSE          => 'artistic_2',
    PL_FILES         => {},
    MIN_PERL_VERSION => 5.006,
    CONFIGURE_REQUIRES => {
        'ExtUtils::MakeMaker' => 0,
    },
    BUILD_REQUIRES => {
        'Test::More' => 0,
    },
    PREREQ_PM => {
        parent => 0,
    },
    META_MERGE => { resources
        => { repository => 'https://github.com/choroba/Acme-Array-MaxSize' },
             provides => { 'Acme::Array::MaxSize' => {
                                 file => 'lib/Acme/Array/MaxSize.pm',
                                 version => $VERSION,
                             },

t/00-load.t  view on Meta::CPAN

#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;

plan tests => 1;

BEGIN {
    use_ok( 'Acme::Array::MaxSize' ) || print "Bail out!\n";
}

diag( "Testing Acme::Array::MaxSize $Acme::Array::MaxSize::VERSION, Perl $], $^X" );

t/10-instance.t  view on Meta::CPAN

#!/usr/bin/perl
use warnings;
use strict;

use Acme::Array::MaxSize;
use Test::More tests => 20;

tie my @arr, 'Acme::Array::MaxSize', 3;


$#arr = 3;
is($#arr, 2, '$#=');

@arr = (1, 2, 3, 4);
is("@arr", '1 2 3', '=()');

t/manifest.t  view on Meta::CPAN

#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;

unless ( $ENV{RELEASE_TESTING} ) {
    plan( skip_all => "Author tests not required for installation" );
}

my $min_tcm = 0.9;
eval "use Test::CheckManifest $min_tcm";
plan skip_all => "Test::CheckManifest $min_tcm required" if $@;

ok_manifest();

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

#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;

unless ( $ENV{RELEASE_TESTING} ) {
    plan( skip_all => "Author tests not required for installation" );
}

# 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();

t/pod.t  view on Meta::CPAN

#!perl -T
use 5.006;
use strict;
use warnings;
use Test::More;

unless ( $ENV{RELEASE_TESTING} ) {
    plan( skip_all => "Author tests not required for installation" );
}

# 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();

 view all matches for this distribution
 view release on metacpan -  search on metacpan

( run in 1.396 second using v1.00-cache-2.02-grep-82fe00e-cpan-585fae043c8 )