X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=blobdiff_plain;f=t%2F014_attribute_introspection.t;h=322f606aa17d949da322357dea778faf1fcdd286;hb=ed8563cb907724e79a4d7b1d7480562def691981;hp=ec11f7938ad401e46d0329884f95ae190bd1657c;hpb=495af5181ab3a346f2271c3b1a981e355941e2c4;p=gitmo%2FClass-MOP.git diff --git a/t/014_attribute_introspection.t b/t/014_attribute_introspection.t index ec11f79..322f606 100644 --- a/t/014_attribute_introspection.t +++ b/t/014_attribute_introspection.t @@ -3,11 +3,11 @@ use strict; use warnings; -use Test::More tests => 46; +use Test::More tests => 58; use Test::Exception; BEGIN { - use_ok('Class::MOP'); + use_ok('Class::MOP'); } { @@ -18,68 +18,79 @@ BEGIN { { my $meta = Class::MOP::Attribute->meta(); isa_ok($meta, 'Class::MOP::Class'); - + my @methods = qw( meta new clone - + initialize_instance_slot - + name has_accessor accessor - has_writer writer - has_reader reader + has_writer writer get_write_method get_write_method_ref + has_reader reader get_read_method get_read_method_ref has_predicate predicate + has_clearer clearer + has_builder builder has_init_arg init_arg has_default default is_default_a_coderef - + has_initializer initializer + slots - + get_value + set_value + has_value + clear_value + associated_class attach_to_class detach_from_class - - generate_accessor_method - generate_reader_method - generate_writer_method - generate_predicate_method - - generate_accessor_method_inline - generate_reader_method_inline - generate_writer_method_inline - generate_predicate_method_inline - + + accessor_metaclass + + associated_methods + associate_method + process_accessors install_accessors remove_accessors ); - + is_deeply( - [ sort @methods ], [ sort $meta->get_method_list ], - '... our method list matches'); - + [ sort @methods ], + '... our method list matches'); + foreach my $method_name (@methods) { ok($meta->has_method($method_name), '... Class::MOP::Attribute->has_method(' . $method_name . ')'); } - - my @attributes = qw( - name accessor reader writer predicate - init_arg default associated_class - ); + + my @attributes = ( + '$!name', + '$!accessor', + '$!reader', + '$!writer', + '$!predicate', + '$!clearer', + '$!builder', + '$!init_arg', + '$!default', + '$!associated_class', + '@!associated_methods', + ); is_deeply( - [ sort @attributes ], [ sort $meta->get_attribute_list ], + [ sort @attributes ], '... our attribute list matches'); - + foreach my $attribute_name (@attributes) { - ok($meta->has_attribute($attribute_name), '... Class::MOP::Attribute->has_attribute(' . $attribute_name . ')'); + ok($meta->has_attribute($attribute_name), '... Class::MOP::Attribute->has_attribute(' . $attribute_name . ')'); } - - # We could add some tests here to make sure that - # the attribute have the appropriate - # accessor/reader/writer/predicate combinations, - # but that is getting a little excessive so I - # wont worry about it for now. Maybe if I get + + # We could add some tests here to make sure that + # the attribute have the appropriate + # accessor/reader/writer/predicate combinations, + # but that is getting a little excessive so I + # wont worry about it for now. Maybe if I get # bored I will do it. }