fix testspectations
[gitmo/Class-MOP.git] / t / 014_attribute_introspection.t
1 #!/usr/bin/perl
2
3 use strict;
4 use warnings;
5
6 use Test::More tests => 59;
7 use Test::Exception;
8
9 BEGIN {
10     use_ok('Class::MOP');
11 }
12
13 {
14     my $attr = Class::MOP::Attribute->new('$test');
15     is($attr->meta, Class::MOP::Attribute->meta, '... instance and class both lead to the same meta');
16 }
17
18 {
19     my $meta = Class::MOP::Attribute->meta();
20     isa_ok($meta, 'Class::MOP::Class');
21
22     my @methods = qw(
23         meta
24         new clone
25
26         initialize_instance_slot
27
28         name
29         has_accessor  accessor
30         has_writer    writer     get_write_method get_write_method_ref
31         has_reader    reader     get_read_method  get_read_method_ref
32         has_predicate predicate
33         has_clearer   clearer
34         has_builder   builder
35         has_init_arg  init_arg
36         has_default   default    is_default_a_coderef
37         has_initializer initializer
38
39         slots
40         get_value
41         set_value
42         has_value
43         clear_value
44
45         associated_class
46         attach_to_class detach_from_class
47
48         accessor_metaclass
49
50         associated_methods
51         associate_method
52
53         process_accessors
54         install_accessors
55         remove_accessors
56         );
57
58     is_deeply(
59         [ sort $meta->get_method_list ],
60         [ sort @methods ],
61         '... our method list matches');
62
63     foreach my $method_name (@methods) {
64         ok($meta->has_method($method_name), '... Class::MOP::Attribute->has_method(' . $method_name . ')');
65     }
66
67     my @attributes = (
68         '$!name',
69         '$!accessor',
70         '$!reader',
71         '$!writer',
72         '$!predicate',
73         '$!clearer',
74         '$!builder',
75         '$!init_arg',
76         '$!initializer',
77         '$!default',
78         '$!associated_class',
79         '@!associated_methods',
80     );
81
82     is_deeply(
83         [ sort $meta->get_attribute_list ],
84         [ sort @attributes ],
85         '... our attribute list matches');
86
87     foreach my $attribute_name (@attributes) {
88         ok($meta->has_attribute($attribute_name), '... Class::MOP::Attribute->has_attribute(' . $attribute_name . ')');
89     }
90
91     # We could add some tests here to make sure that
92     # the attribute have the appropriate
93     # accessor/reader/writer/predicate combinations,
94     # but that is getting a little excessive so I
95     # wont worry about it for now. Maybe if I get
96     # bored I will do it.
97 }