summaryrefslogtreecommitdiffstats
path: root/t/11-multiple-instantiation.t
diff options
context:
space:
mode:
Diffstat (limited to 't/11-multiple-instantiation.t')
-rw-r--r--t/11-multiple-instantiation.t43
1 files changed, 0 insertions, 43 deletions
diff --git a/t/11-multiple-instantiation.t b/t/11-multiple-instantiation.t
deleted file mode 100644
index c8372c1..0000000
--- a/t/11-multiple-instantiation.t
+++ /dev/null
@@ -1,43 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use Test::More;
-use Test::Moose;
-
-{
- package Bar;
- use Moose;
-
- has foo => (
- is => 'ro',
- isa => 'Str',
- required => 1,
- );
-}
-
-{
- package Foo;
- use Moose;
- use Bread::Board::Declare;
-
- has foo => (
- is => 'ro',
- isa => 'Str',
- value => 'FOO',
- );
-
- has bar => (
- is => 'ro',
- isa => 'Bar',
- dependencies => ['foo'],
- );
-}
-
-with_immutable {
-my $foo1 = Foo->new;
-is($foo1->bar->foo, 'FOO');
-my $foo2 = Foo->new(foo => 'BAR');
-is($foo2->bar->foo, 'BAR');
-} 'Foo';
-
-done_testing;