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