Bread-Board-Declare

 view release on metacpan or  search on metacpan

META.json  view on Meta::CPAN

            "Moose::Role" : "0",
            "Moose::Util" : "0"
         }
      },
      "test" : {
         "requires" : {
            "File::Spec" : "0",
            "IO::Handle" : "0",
            "IPC::Open3" : "0",
            "Moose::Util::TypeConstraints" : "0",
            "Test::Fatal" : "0",
            "Test::Moose" : "0",
            "Test::More" : "0.88",
            "lib" : "0",
            "strict" : "0",
            "warnings" : "0"
         }
      }
   },
   "provides" : {
      "Bread::Board::Declare" : {

META.yml  view on Meta::CPAN

---
abstract: 'create Bread::Board containers as normal Moose objects'
author:
  - 'Jesse Luehrs <doy@tozt.net>'
build_requires:
  File::Spec: 0
  IO::Handle: 0
  IPC::Open3: 0
  Moose::Util::TypeConstraints: 0
  Test::Fatal: 0
  Test::Moose: 0
  Test::More: 0.88
  lib: 0
  strict: 0
  warnings: 0
configure_requires:
  ExtUtils::MakeMaker: 6.30
dynamic_config: 0
generated_by: 'Dist::Zilla version 5.008, CPAN::Meta::Converter version 2.132830'
license: mit

Makefile.PL  view on Meta::CPAN

    "Moose" => 0,
    "Moose::Exporter" => 0,
    "Moose::Role" => 0,
    "Moose::Util" => 0
  },
  "TEST_REQUIRES" => {
    "File::Spec" => 0,
    "IO::Handle" => 0,
    "IPC::Open3" => 0,
    "Moose::Util::TypeConstraints" => 0,
    "Test::Fatal" => 0,
    "Test::Moose" => 0,
    "Test::More" => "0.88",
    "lib" => 0,
    "strict" => 0,
    "warnings" => 0
  },
  "VERSION" => "0.16",
  "test" => {
    "TESTS" => "t/*.t"
  }

Makefile.PL  view on Meta::CPAN

  "Bread::Board::Types" => 0,
  "Class::Load" => 0,
  "File::Spec" => 0,
  "IO::Handle" => 0,
  "IPC::Open3" => 0,
  "Moose" => 0,
  "Moose::Exporter" => 0,
  "Moose::Role" => 0,
  "Moose::Util" => 0,
  "Moose::Util::TypeConstraints" => 0,
  "Test::Fatal" => 0,
  "Test::Moose" => 0,
  "Test::More" => "0.88",
  "lib" => 0,
  "strict" => 0,
  "warnings" => 0
);


unless ( eval { ExtUtils::MakeMaker->VERSION(6.63_03) } ) {
  delete $WriteMakefileArgs{TEST_REQUIRES};

t/circular-dependency.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;

{
    package Foo;
    use Moose;

    has bar => (
        is  => 'rw',
        isa => 'Bar',
    );
}

t/defaults.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;

{
    package Foo;
    use Moose;
    use Bread::Board::Declare;

    ::like(::exception {
        has foo => (
            is      => 'ro',
            isa     => 'Str',

t/extends.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;

{
    package Bar;
    use Moose;
}

{
    package Baz;
    use Moose;
    use Bread::Board::Declare;

t/infer.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;

{
    package Foo;
    use Moose;

    has data => (
        is      => 'ro',
        isa     => 'Str',
        default => 'FOO',
    );

t/inheritance.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Moose;
use Test::Fatal;

{
    package Parent;
    use Moose;
    use Bread::Board::Declare;

    has foo => (
        is    => 'ro',
        isa   => 'Str',
        value => 'FOO',

t/no-service.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;
use Test::Moose;

{
    package Bar;
    use Moose;
}

{
    package Foo;
    use Moose;

t/parameters.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;

{
    package Schema;
    use Moose;
}

{
    package Thing;
    use Moose;

t/type-checks.t  view on Meta::CPAN

#!/usr/bin/env perl
use strict;
use warnings;
use Test::More;
use Test::Fatal;
use Test::Moose;

{
    package Foo;
    use Moose;
    use Bread::Board::Declare;

    has foo => (
        is    => 'ro',
        isa   => 'Ref',



( run in 1.650 second using v1.01-cache-2.11-cpan-54e63673c56 )