rewritten using metaroles, the Moose way
[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 => 3;
6
7 {
8     package MyClass;
9     use Moose;
10     use MooseX::AlwaysCoerce;
11     use Moose::Util::TypeConstraints;
12
13     subtype 'MyType', as 'Int';
14     coerce 'MyType', from 'Str', via { length $_ };
15
16     has foo => (is => 'rw', isa => 'MyType');
17
18     class_has bar => (is => 'rw', isa => 'MyType');
19 }
20
21 ok( (my $instance = MyClass->new), 'instance' );
22
23 eval { $instance->foo('bar') };
24 ok( (!$@), 'attribute coercion ran' );
25
26 eval { $instance->bar('baz') };
27 ok( (!$@), 'class attribute coercion ran' );