Add Test::Mouse
[gitmo/Mouse.git] / t / 020_attributes / 015_attribute_traits.t
CommitLineData
85a83bed 1#!/usr/bin/perl
85a83bed 2
3use strict;
4use warnings;
5
db53d2b4 6use lib 't/lib';
7
43e6a50b 8use Test::More tests => 12;
85a83bed 9use Test::Exception;
10use Test::Mouse;
11
73e9153a 12use MooseCompat;
13
85a83bed 14{
15 package My::Attribute::Trait;
16 use Mouse::Role;
17
18 has 'alias_to' => (is => 'ro', isa => 'Str');
19
20 has foo => ( is => "ro", default => "blah" );
21
22 after 'install_accessors' => sub {
23 my $self = shift;
85a83bed 24 $self->associated_class->add_method(
25 $self->alias_to,
4060c871 26 $self->get_read_method_ref
85a83bed 27 );
28 };
29}
30
31{
32 package My::Class;
33 use Mouse;
34
35 has 'bar' => (
36 traits => [qw/My::Attribute::Trait/],
37 is => 'ro',
38 isa => 'Int',
39 alias_to => 'baz',
40 );
41
42 has 'gorch' => (
43 is => 'ro',
44 isa => 'Int',
45 default => sub { 10 }
46 );
47}
48
49my $c = My::Class->new(bar => 100);
50isa_ok($c, 'My::Class');
51
52is($c->bar, 100, '... got the right value for bar');
53is($c->gorch, 10, '... got the right value for gorch');
54
55can_ok($c, 'baz');
56is($c->baz, 100, '... got the right value for baz');
57
58my $bar_attr = $c->meta->get_attribute('bar');
85a83bed 59does_ok($bar_attr, 'My::Attribute::Trait');
60ok($bar_attr->has_applied_traits, '... got the applied traits');
61is_deeply($bar_attr->applied_traits, [qw/My::Attribute::Trait/], '... got the applied traits');
62is($bar_attr->foo, "blah", "attr initialized");
63
64my $gorch_attr = $c->meta->get_attribute('gorch');
65ok(!$gorch_attr->does('My::Attribute::Trait'), '... gorch doesnt do the trait');
66ok(!$gorch_attr->has_applied_traits, '... no traits applied');
67is($gorch_attr->applied_traits, undef, '... no traits applied');
68
69
70