summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-02-20 02:04:52 -0600
committerJesse Luehrs <doy@tozt.net>2011-02-20 02:04:52 -0600
commit8ad579f26a1c74d5685491df55b57e694e54e087 (patch)
treede3c03114a1932c1ddbb4a72ae5c34c5ceaf19f3 /t/01-basic.t
parenta0cc11a5f9b60226a07054d6041cc45b4ea2221a (diff)
downloadbread-board-declare-8ad579f26a1c74d5685491df55b57e694e54e087.tar.gz
bread-board-declare-8ad579f26a1c74d5685491df55b57e694e54e087.zip
initial implementation
Diffstat (limited to 't/01-basic.t')
-rw-r--r--t/01-basic.t79
1 files changed, 79 insertions, 0 deletions
diff --git a/t/01-basic.t b/t/01-basic.t
new file mode 100644
index 0000000..a679a47
--- /dev/null
+++ b/t/01-basic.t
@@ -0,0 +1,79 @@
+#!/usr/bin/env perl
+use strict;
+use warnings;
+use Test::More;
+
+{
+ package Baz;
+ use Moose;
+}
+
+{
+ package Foo;
+ use Moose;
+ use MooseX::Bread::Board;
+
+ has foo => (
+ is => 'ro',
+ isa => 'Str',
+ default => 'FOO',
+ );
+
+ has bar => (
+ is => 'ro',
+ isa => 'Str',
+ value => 'BAR',
+ );
+
+ has baz => (
+ is => 'ro',
+ isa => 'Baz',
+ class => 'Baz',
+ );
+
+ my $i = 0;
+ has quux => (
+ is => 'ro',
+ isa => 'Str',
+ block => sub { 'QUUX' . $i++ },
+ );
+}
+
+{
+ my $foo = Foo->new;
+ ok($foo->has_service($_), "has service $_")
+ for qw(bar baz quux);
+ ok(!$foo->has_service('foo'), "doesn't have service foo");
+ isa_ok($foo->get_service('bar'), 'MooseX::Bread::Board::Literal');
+ isa_ok($foo->get_service('baz'), 'MooseX::Bread::Board::ConstructorInjection');
+ isa_ok($foo->get_service('quux'), 'MooseX::Bread::Board::BlockInjection');
+}
+
+{
+ my $foo = Foo->new;
+ is($foo->foo, 'FOO', "normal attrs work");
+ is($foo->bar, 'BAR', "literals work");
+ isa_ok($foo->baz, 'Baz');
+ isnt($foo->baz, $foo->baz, "new instance each time");
+ is($foo->quux, 'QUUX0', "block injections work");
+ is($foo->quux, 'QUUX1', "and they are run on each access");
+}
+
+{
+ my $baz = Baz->new;
+ my $foo = Foo->new(
+ foo => 'OOF',
+ bar => 'RAB',
+ baz => $baz,
+ quux => 'XUUQ',
+ );
+ is($foo->foo, 'OOF', "normal attrs work from constructor");
+ is($foo->bar, 'RAB', "constructor overrides literals");
+ isa_ok($foo->baz, 'Baz');
+ is($foo->baz, $baz, "constructor overrides constructor injections");
+ is($foo->baz, $foo->baz, "and returns the same thing each time");
+ is($foo->quux, 'XUUQ', "constructor overrides block injections");
+ is($foo->quux, 'XUUQ', "and returns the same thing each time");
+}
+
+done_testing;