Merged topic/metarole-distinguishes-role-meta (which includes topic/roles-have-real...
[gitmo/Moose.git] / t / 020_attributes / 027_accessor_override_method.t
1 #!/usr/bin/env perl
2 use strict;
3 use warnings;
4 use Test::More;
5
6 BEGIN {
7     eval "use Test::Output;";
8     plan skip_all => "Test::Output is required for this test" if $@;
9 }
10
11 {
12     package Foo;
13     use Moose;
14
15     sub get_a { }
16     sub set_b { }
17     sub has_c { }
18     sub clear_d { }
19     sub e { }
20 }
21
22 my $foo_meta = Foo->meta;
23 stderr_like(sub { $foo_meta->add_attribute(a => (reader => 'get_a')) },
24             qr/^You are overwriting a locally defined method \(get_a\) with an accessor/, 'reader overriding gives proper warning');
25 stderr_like(sub { $foo_meta->add_attribute(b => (writer => 'set_b')) },
26             qr/^You are overwriting a locally defined method \(set_b\) with an accessor/, 'writer overriding gives proper warning');
27 stderr_like(sub { $foo_meta->add_attribute(c => (predicate => 'has_c')) },
28             qr/^You are overwriting a locally defined method \(has_c\) with an accessor/, 'predicate overriding gives proper warning');
29 stderr_like(sub { $foo_meta->add_attribute(d => (clearer => 'clear_d')) },
30             qr/^You are overwriting a locally defined method \(clear_d\) with an accessor/, 'clearer overriding gives proper warning');
31 stderr_like(sub { $foo_meta->add_attribute(e => (is => 'rw')) },
32             qr/^You are overwriting a locally defined method \(e\) with an accessor/, 'accessor overriding gives proper warning');
33
34 done_testing;