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