TODO-ify failing tests
[gitmo/MooseX-AlwaysCoerce.git] / t / 04-parameterized-roles.t
1 #!/usr/bin/env perl
2
3 use strict;
4 use warnings;
5 use Test::More;
6 use Test::Exception;
7
8 unless (eval { require MooseX::Role::Parameterized }) {
9     plan skip_all => 'This test needs MooseX::Role::Parameterized';
10 }
11
12 eval <<'EOF';
13     package Role;
14     use MooseX::Role::Parameterized;
15     use MooseX::AlwaysCoerce;
16     use Moose::Util::TypeConstraints;
17
18     # I do nothing!
19     role {};
20
21     subtype 'MyType', as 'Int';
22     coerce 'MyType', from 'Str', via { length $_ };
23
24     subtype 'Uncoerced', as 'Int';
25
26     has foo => (is => 'rw', isa => 'MyType');
27
28     class_has bar => (is => 'rw', isa => 'MyType');
29
30     class_has baz => (is => 'rw', isa => 'MyType', coerce => 0);
31
32     has quux => (is => 'rw', isa => 'MyType', coerce => 0);
33
34     has uncoerced_attr => (is => 'rw', isa => 'Uncoerced');
35
36     class_has uncoerced_class_attr => (is => 'rw', isa => 'Uncoerced');
37
38     package Foo;
39     use Moose;
40     with 'Role';
41 EOF
42
43 if ($@) {
44     plan skip_all =>
45 'MooseX::ClassAttribute is currently incompatible with MooseX::Role::Parameterized';
46 }
47
48 plan tests => 8;
49
50 eval 'use Test::NoWarnings';
51
52 ok( (my $instance = MyClass->new), 'instance' );
53
54 lives_ok { $instance->foo('bar') } 'attribute coercion ran';
55
56 lives_ok { $instance->bar('baz') } 'class attribute coercion ran';
57
58 dies_ok { $instance->baz('quux') }
59     'class attribute coercion did not run with coerce => 0';
60
61 dies_ok { $instance->quux('mtfnpy') }
62     'attribute coercion did not run with coerce => 0';
63
64 lives_ok { $instance->uncoerced_attr(10) }
65     'set attribute having type with no coercion and no coerce=0';
66
67 lives_ok { $instance->uncoerced_class_attr(10) }
68     'set class attribute having type with no coercion and no coerce=0';