Commit | Line | Data |
a5e3ddfd |
1 | use strict; |
2 | use warnings; |
3 | |
4 | use lib 't/lib'; |
5 | |
076543d6 |
6 | use Test::More tests => 14; |
a5e3ddfd |
7 | |
8 | # We just want the class definitions in here. |
9 | use SharedTests; |
10 | |
11 | |
12 | ok( HasClassAttribute->meta()->has_class_attribute('ObjectCount'), |
13 | q{has_class_attribute('ObjectCount') returns true} ); |
14 | |
15 | ok( HasClassAttribute->meta()->get_class_attribute('ObjectCount') |
16 | ->meta()->does_role('MooseX::ClassAttribute::Role::Meta::Attribute'), |
17 | 'get_class_attribute_list returns an object which does the MooseX::ClassAttribute::Role::Meta::Attribute role' ); |
18 | |
8207dfe7 |
19 | my @ca = qw( Delegatee |
20 | LazyAttribute |
21 | ManyNames |
22 | Mapping |
23 | ObjectCount |
24 | ReadOnlyAttribute |
25 | WeakAttribute |
26 | Built |
27 | LazyBuilt |
28 | Triggerish |
29 | ); |
a5e3ddfd |
30 | |
31 | is_deeply( [ sort HasClassAttribute->meta()->get_class_attribute_list() ], |
32 | [ sort @ca ], |
33 | 'HasClassAttribute get_class_attribute_list gets all class attributes' ); |
34 | |
35 | is_deeply( [ sort map { $_->name() } HasClassAttribute->meta()->get_all_attributes() ], |
36 | [ 'size' ], |
37 | 'HasClassAttribute get_all_attributes only finds size attribute' ); |
38 | |
39 | is_deeply( [ sort map { $_->name() } HasClassAttribute->meta()->get_all_class_attributes() ], |
40 | [ sort @ca ], |
41 | 'HasClassAttribute get_all_class_attributes gets all class attributes' ); |
42 | |
43 | is_deeply( [ sort keys %{ HasClassAttribute->meta()->get_class_attribute_map() } ], |
44 | [ sort @ca ], |
45 | 'HasClassAttribute get_class_attribute_map gets all class attributes' ); |
46 | |
47 | is_deeply( [ sort map { $_->name() } Child->meta()->get_all_class_attributes() ], |
48 | [ sort ( @ca, 'YetAnotherAttribute' ) ], |
49 | 'Child get_class_attribute_map gets all class attributes' ); |
50 | |
51 | ok( ! Child->meta()->has_class_attribute('ObjectCount'), |
52 | q{has_class_attribute('ObjectCount') returns false for Child} ); |
53 | |
54 | ok( Child->meta()->has_class_attribute('YetAnotherAttribute'), |
55 | q{has_class_attribute('YetAnotherAttribute') returns true for Child} ); |
56 | |
57 | ok( Child->can('YetAnotherAttribute'), |
58 | 'Child has accessor for YetAnotherAttribute' ); |
59 | |
60 | ok( Child->meta()->has_class_attribute_value('YetAnotherAttribute'), |
61 | 'Child has class attribute value for YetAnotherAttribute' ); |
62 | |
63 | Child->meta()->remove_class_attribute('YetAnotherAttribute'); |
64 | |
65 | ok( ! Child->meta()->has_class_attribute('YetAnotherAttribute'), |
66 | q{... has_class_attribute('YetAnotherAttribute') returns false after remove_class_attribute} ); |
67 | |
68 | ok( ! Child->can('YetAnotherAttribute'), |
69 | 'accessor for YetAnotherAttribute has been removed' ); |
70 | |
71 | ok( ! Child->meta()->has_class_attribute_value('YetAnotherAttribute'), |
72 | 'Child does not have a class attribute value for YetAnotherAttribute' ); |