summaryrefslogtreecommitdiffstats
path: root/t/04-block.t
diff options
context:
space:
mode:
Diffstat (limited to 't/04-block.t')
-rw-r--r--t/04-block.t40
1 files changed, 0 insertions, 40 deletions
diff --git a/t/04-block.t b/t/04-block.t
deleted file mode 100644
index 3ce9f48..0000000
--- a/t/04-block.t
+++ /dev/null
@@ -1,40 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use Test::More;
-use Test::Moose;
-
-{
- package Foo;
- use Moose;
- use Bread::Board::Declare;
-
- has foo => (
- is => 'ro',
- isa => 'Str',
- default => 'FOO',
- );
-
- has bar => (
- is => 'ro',
- isa => 'Str',
- value => 'BAR',
- );
-
- has baz => (
- is => 'ro',
- isa => 'Str',
- block => sub {
- my ($s, $self) = @_;
- return $s->param('bar') . $self->foo;
- },
- dependencies => ['bar'],
- );
-}
-
-with_immutable {
- my $foo = Foo->new;
- is($foo->baz, 'BARFOO', "self is passed properly");
-} 'Foo';
-
-done_testing;