add Test::NoWarnings; add (failing) tests for the use of MX::AlwaysCoerce from a...
[gitmo/MooseX-AlwaysCoerce.git] / t / 01-basic.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4
5 use Test::More tests => 8;
6 use Test::Exception;
7 use Test::NoWarnings;
8
9 {
10     package MyClass;
11     use Moose;
12     use MooseX::AlwaysCoerce;
13     use Moose::Util::TypeConstraints;
14
15     subtype 'MyType', as 'Int';
16     coerce 'MyType', from 'Str', via { length $_ };
17
18     subtype 'Uncoerced', as 'Int';
19
20     has foo => (is => 'rw', isa => 'MyType');
21
22     class_has bar => (is => 'rw', isa => 'MyType');
23
24     class_has baz => (is => 'rw', isa => 'MyType', coerce => 0);
25
26     has quux => (is => 'rw', isa => 'MyType', coerce => 0);
27
28     has uncoerced_attr => (is => 'rw', isa => 'Uncoerced');
29
30     class_has uncoerced_class_attr => (is => 'rw', isa => 'Uncoerced');
31 }
32
33 ok( (my $instance = MyClass->new), 'instance' );
34
35 lives_ok { $instance->foo('bar') } 'attribute coercion ran';
36
37 lives_ok { $instance->bar('baz') } 'class attribute coercion ran';
38
39 dies_ok { $instance->baz('quux') }
40     'class attribute coercion did not run with coerce => 0';
41
42 dies_ok { $instance->quux('mtfnpy') }
43     'attribute coercion did not run with coerce => 0';
44
45 lives_ok { $instance->uncoerced_attr(10) }
46     'set attribute having type with no coercion and no coerce=0';
47
48 lives_ok { $instance->uncoerced_class_attr(10) }
49     'set class attribute having type with no coercion and no coerce=0';