summaryrefslogtreecommitdiffstats
path: root/t/30-type-checks.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/30-type-checks.t
parent65028d365fcfa1f28b0f0e85e8443b3b1c9dad34 (diff)
downloadbread-board-declare-36ea288cc78dedaadd1d3b38331489646be26626.tar.gz
bread-board-declare-36ea288cc78dedaadd1d3b38331489646be26626.zip
remove test numbers
Diffstat (limited to 't/30-type-checks.t')
-rw-r--r--t/30-type-checks.t46
1 files changed, 0 insertions, 46 deletions
diff --git a/t/30-type-checks.t b/t/30-type-checks.t
deleted file mode 100644
index 0641d98..0000000
--- a/t/30-type-checks.t
+++ /dev/null
@@ -1,46 +0,0 @@
-#!/usr/bin/env perl
-use strict;
-use warnings;
-use Test::More;
-use Test::Fatal;
-use Test::Moose;
-
-{
- package Foo;
- use Moose;
- use Bread::Board::Declare;
-
- has foo => (
- is => 'ro',
- isa => 'Ref',
- value => 'FOO',
- );
-
- has bar => (
- is => 'ro',
- isa => 'Str',
- block => sub { { foo => 'bar' } },
- );
-
- has baz => (
- is => 'ro',
- isa => 'HashRef',
- block => sub { shift->param('bar') },
- dependencies => ['bar'],
- );
-}
-
-with_immutable {
- my $foo = Foo->new;
- like(exception { $foo->foo },
- qr/^Attribute \(foo\) does not pass the type constraint because: Validation failed for 'Ref' with value .*FOO/,
- "error when service returns invalid value");
- like(exception { $foo->bar },
- qr/^Attribute \(bar\) does not pass the type constraint because: Validation failed for 'Str' with value .*(?:HASH|foo.*bar)/,
- "error when service returns invalid value");
- like(exception { $foo->baz },
- qr/^Attribute \(bar\) does not pass the type constraint because: Validation failed for 'Str' with value .*(?:HASH|foo.*bar)/,
- "error when service returns invalid value, even as a dependency");
-} 'Foo';
-
-done_testing;