summaryrefslogtreecommitdiffstats
path: root/t/more-inheritance.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-06-14 16:04:36 -0500
committerJesse Luehrs <doy@tozt.net>2011-06-14 16:04:36 -0500
commit36ea288cc78dedaadd1d3b38331489646be26626 (patch)
tree4e2c123e9a1b0d8fe50036b03ab17af7850988ba /t/more-inheritance.t
parent65028d365fcfa1f28b0f0e85e8443b3b1c9dad34 (diff)
downloadbread-board-declare-36ea288cc78dedaadd1d3b38331489646be26626.tar.gz
bread-board-declare-36ea288cc78dedaadd1d3b38331489646be26626.zip
remove test numbers
Diffstat (limited to 't/more-inheritance.t')
-rw-r--r--t/more-inheritance.t105
1 files changed, 105 insertions, 0 deletions
diff --git a/t/more-inheritance.t b/t/more-inheritance.t
new file mode 100644
index 0000000..94d726c
--- /dev/null
+++ b/t/more-inheritance.t
@@ -0,0 +1,105 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+use Test::Moose;
+
+{
+ package Parent;
+ use Moose;
+ use Bread::Board::Declare;
+
+ has foo => (
+ is => 'ro',
+ isa => 'Str',
+ value => 'parent',
+ );
+
+ has bar => (
+ is => 'ro',
+ isa => 'Str',
+ block => sub {
+ my $s = shift;
+ return $s->param('foo') . ' ' . 'parent';
+ },
+ dependencies => ['foo'],
+ );
+}
+
+{
+ package Child1;
+ use Moose;
+ use Bread::Board::Declare;
+
+ extends 'Parent';
+
+ has foo => (
+ is => 'ro',
+ isa => 'Str',
+ value => 'child',
+ );
+}
+
+{
+ package Child2;
+ use Moose;
+ use Bread::Board::Declare;
+
+ extends 'Parent';
+
+ has bar => (
+ is => 'ro',
+ isa => 'Str',
+ block => sub {
+ my $s = shift;
+ return $s->param('foo') . ' ' . 'child';
+ },
+ dependencies => ['foo'],
+ );
+}
+
+{
+ package Child3;
+ use Moose;
+ use Bread::Board::Declare;
+
+ extends 'Child1';
+
+ has bar => (
+ is => 'ro',
+ isa => 'Str',
+ block => sub {
+ my $s = shift;
+ return $s->param('foo') . ' ' . 'child';
+ },
+ dependencies => ['foo'],
+ );
+}
+
+with_immutable {
+{
+ my $obj = Parent->new;
+ is($obj->foo, 'parent');
+ is($obj->bar, 'parent parent');
+}
+
+{
+ my $obj = Child1->new;
+ is($obj->foo, 'child');
+ is($obj->bar, 'child parent');
+}
+
+{
+ my $obj = Child2->new;
+ is($obj->foo, 'parent');
+ is($obj->bar, 'parent child');
+}
+
+{
+ my $obj = Child3->new;
+ is($obj->foo, 'child');
+ is($obj->bar, 'child child');
+}
+} 'Parent', 'Child1', 'Child2', 'Child3';
+
+done_testing;