summaryrefslogtreecommitdiffstats
path: root/t/mop.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/mop.t
parent65028d365fcfa1f28b0f0e85e8443b3b1c9dad34 (diff)
downloadbread-board-declare-36ea288cc78dedaadd1d3b38331489646be26626.tar.gz
bread-board-declare-36ea288cc78dedaadd1d3b38331489646be26626.zip
remove test numbers
Diffstat (limited to 't/mop.t')
-rw-r--r--t/mop.t39
1 files changed, 39 insertions, 0 deletions
diff --git a/t/mop.t b/t/mop.t
new file mode 100644
index 0000000..c3a943f
--- /dev/null
+++ b/t/mop.t
@@ -0,0 +1,39 @@
+#!/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',
+ value => 'FOO',
+ );
+
+ has bar => (
+ is => 'ro',
+ isa => 'Str',
+ block => sub {
+ my $s = shift;
+ return $s->param('foo') . 'BAR';
+ },
+ dependencies => ['foo'],
+ );
+}
+
+with_immutable {
+ my $foo = Foo->new;
+ my $foo_attr = $foo->meta->get_attribute('foo');
+ my $bar_attr = $foo->meta->get_attribute('bar');
+ is($foo_attr->get_value($foo), 'FOO', "right value");
+ is($bar_attr->get_value($foo), 'FOOBAR', "right value");
+ ok(!$foo_attr->has_value($foo), "no value");
+ ok(!$bar_attr->has_value($foo), "no value");
+} 'Foo';
+
+done_testing;