summaryrefslogtreecommitdiffstats
path: root/t/01-basic.t
diff options
context:
space:
mode:
authorJesse Luehrs <doy@tozt.net>2011-02-21 16:04:51 -0600
committerJesse Luehrs <doy@tozt.net>2011-02-21 16:04:51 -0600
commitb274df4c9da24b117a22e287acd03b3fa87233a8 (patch)
tree602aba197c8752ea4253bc8fbb950fb373f92903 /t/01-basic.t
parent61839366b807e9e8f6818020508d765efed945b5 (diff)
downloadbread-board-declare-b274df4c9da24b117a22e287acd03b3fa87233a8.tar.gz
bread-board-declare-b274df4c9da24b117a22e287acd03b3fa87233a8.zip
rename MooseX::Bread::Board -> Bread::Board::Declare
Diffstat (limited to 't/01-basic.t')
-rw-r--r--t/01-basic.t8
1 files changed, 4 insertions, 4 deletions
diff --git a/t/01-basic.t b/t/01-basic.t
index 5aff0eb..e978101 100644
--- a/t/01-basic.t
+++ b/t/01-basic.t
@@ -13,7 +13,7 @@ my $i;
{
package Foo;
use Moose;
- use MooseX::Bread::Board;
+ use Bread::Board::Declare;
has foo => (
is => 'ro',
@@ -54,9 +54,9 @@ $i = 0;
for qw(bar baz quux);
ok(!$foo->has_service($_), "doesn't have service $_")
for qw(foo baz2);
- 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');
+ isa_ok($foo->get_service('bar'), 'Bread::Board::Declare::Literal');
+ isa_ok($foo->get_service('baz'), 'Bread::Board::Declare::ConstructorInjection');
+ isa_ok($foo->get_service('quux'), 'Bread::Board::Declare::BlockInjection');
}
{