Box-Limited

 view release on metacpan or  search on metacpan

META.yml  view on Meta::CPAN

  url: http://module-build.sourceforge.net/META-spec-v1.4.html
  version: 1.4
module_name: Box::Limited
name: Box-Limited
no_index:
  directory:
    - inc
    - t
requires:
  Moo: 0
  Test::Differences: 0
  Test::Fatal: 0
  Test::Roo: 0
  Type::Tiny: 0
resources:
  license: http://dev.perl.org/licenses/
  repository: https://github.com/ichesnokov/p5-box-limited
version: '0.01'

Makefile.PL  view on Meta::CPAN

use inc::Module::Install;

all_from 'lib/Box/Limited.pm';
repository 'https://github.com/ichesnokov/p5-box-limited';

requires 'Moo'               => 0;
requires 'Type::Tiny'        => 0;
requires 'Test::Differences' => 0;
requires 'Test::Fatal'       => 0;
requires 'Test::Roo'         => 0;

WriteAll(meta => 1);

t/box-limited.t  view on Meta::CPAN

#!/usr/bin/env perl
use Test::Roo;
use experimental qw(signatures);

use List::Util qw(sum0);
use Test::Differences qw(eq_or_diff);
use Test::Fatal qw(exception);

use Box::Limited;

has class_name => (
    is      => 'ro',
    default => sub {'Box::Limited'},
);

has box => (



( run in 1.632 second using v1.01-cache-2.11-cpan-39bf76dae61 )