making get_read_method, etc act more sanely
[gitmo/Class-MOP.git] / t / 022_attribute_duplication.t
CommitLineData
b1897d4d 1#!/usr/bin/perl
2
3use strict;
4use warnings;
5
742fb371 6use Scalar::Util;
7
d14f6cbe 8use Test::More tests => 17;
b1897d4d 9
10BEGIN {
11 use_ok('Class::MOP');
12}
13
14=pod
15
16This tests that when an attribute of the same name
17is added to a class, that it will remove the old
18one first.
19
20=cut
21
22{
23 package Foo;
24 use metaclass;
25
26 Foo->meta->add_attribute('bar' =>
27 reader => 'get_bar',
28 writer => 'set_bar',
29 );
30
31 ::can_ok('Foo', 'get_bar');
32 ::can_ok('Foo', 'set_bar');
33 ::ok(Foo->meta->has_attribute('bar'), '... Foo has the attribute bar');
34
35 my $bar_attr = Foo->meta->get_attribute('bar');
36
37 ::is($bar_attr->reader, 'get_bar', '... the bar attribute has the reader get_bar');
38 ::is($bar_attr->writer, 'set_bar', '... the bar attribute has the writer set_bar');
d14f6cbe 39 ::is($bar_attr->associated_class, Foo->meta, '... and the bar attribute is associated with Foo->meta');
742fb371 40
b1897d4d 41 Foo->meta->add_attribute('bar' =>
42 reader => 'assign_bar'
43 );
44
45 ::ok(!Foo->can('get_bar'), '... Foo no longer has the get_bar method');
46 ::ok(!Foo->can('set_bar'), '... Foo no longer has the set_bar method');
47 ::can_ok('Foo', 'assign_bar');
48 ::ok(Foo->meta->has_attribute('bar'), '... Foo still has the attribute bar');
49
d14f6cbe 50 my $bar_attr2 = Foo->meta->get_attribute('bar');
742fb371 51
b1897d4d 52 ::isnt($bar_attr, $bar_attr2, '... this is a new bar attribute');
53 ::isnt($bar_attr->associated_class, Foo->meta, '... and the old bar attribute is no longer associated with Foo->meta');
54
55 ::is($bar_attr2->associated_class, Foo->meta, '... and the new bar attribute *is* associated with Foo->meta');
56
57 ::isnt($bar_attr2->reader, 'get_bar', '... the bar attribute no longer has the reader get_bar');
58 ::isnt($bar_attr2->reader, 'set_bar', '... the bar attribute no longer has the reader set_bar');
59 ::is($bar_attr2->reader, 'assign_bar', '... the bar attribute now has the reader assign_bar');
60}
61