From 36ea288cc78dedaadd1d3b38331489646be26626 Mon Sep 17 00:00:00 2001 From: Jesse Luehrs Date: Tue, 14 Jun 2011 16:04:36 -0500 Subject: remove test numbers --- t/no-service.t | 75 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 75 insertions(+) create mode 100644 t/no-service.t (limited to 't/no-service.t') diff --git a/t/no-service.t b/t/no-service.t new file mode 100644 index 0000000..aeb4c48 --- /dev/null +++ b/t/no-service.t @@ -0,0 +1,75 @@ +#!/usr/bin/env perl +use strict; +use warnings; +use Test::More; +use Test::Fatal; +use Test::Moose; + +{ + package Bar; + use Moose; +} + +{ + package Foo; + use Moose; + use Bread::Board::Declare; + + has foo => ( + is => 'ro', + isa => 'Str', + ); + + has bar => ( + is => 'ro', + isa => 'Bar', + service => 0, + ); + + has baz => ( + is => 'ro', + isa => 'Str', + block => sub { shift->param('foo') }, + dependencies => ['foo'], + ); + + has quux => ( + is => 'ro', + isa => 'Bar', + block => sub { shift->param('bar') }, + dependencies => ['bar'], + ); +} + +with_immutable { +{ + my $foo = Foo->new; + ok($foo->has_service($_), "has service $_") for qw(foo baz); + ok(!$foo->has_service($_), "doesn't have service $_") for qw(bar); +} + +{ + my $foo = Foo->new; + like( + exception { $foo->baz }, + qr/^Attribute foo did not specify a service\. It must be given a value through the constructor or writer method before it can be resolved\./, + "got the right error when foo isn't set" + ); +} + +{ + my $foo = Foo->new(foo => 'bar'); + is($foo->baz, 'bar', "didn't get an error when foo is set"); +} + +{ + my $foo = Foo->new; + like( + exception { $foo->quux }, + qr/^Could not find container or service for bar in Foo/, + "can't depend on attrs with no service" + ); +} +} 'Foo'; + +done_testing; -- cgit v1.2.3-54-g00ecf