Resolve a todo
[gitmo/Mouse.git] / t / 020_attributes / 015_attribute_traits.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use lib 't/lib';
7
8 use Test::More tests => 12;
9 use Test::Exception;
10 use Test::Mouse;
11
12 use MooseCompat;
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         $self->associated_class->add_method(
25             $self->alias_to,
26             $self->get_read_method_ref
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
49 my $c = My::Class->new(bar => 100);
50 isa_ok($c, 'My::Class');
51
52 is($c->bar, 100, '... got the right value for bar');
53 is($c->gorch, 10, '... got the right value for gorch');
54
55 can_ok($c, 'baz');
56 is($c->baz, 100, '... got the right value for baz');
57
58 my $bar_attr = $c->meta->get_attribute('bar');
59 does_ok($bar_attr, 'My::Attribute::Trait');
60 ok($bar_attr->has_applied_traits, '... got the applied traits');
61 is_deeply($bar_attr->applied_traits, [qw/My::Attribute::Trait/], '... got the applied traits');
62 is($bar_attr->foo, "blah", "attr initialized");
63
64 my $gorch_attr = $c->meta->get_attribute('gorch');
65 ok(!$gorch_attr->does('My::Attribute::Trait'), '... gorch doesnt do the trait');
66 ok(!$gorch_attr->has_applied_traits, '... no traits applied');
67 is($gorch_attr->applied_traits, undef, '... no traits applied');
68
69
70