stop using excludes within moose, since it's no longer necessary
[gitmo/Moose.git] / t / cmop / modify_parent_method.t
CommitLineData
38bf2a25 1use strict;
2use warnings;
3
4use Test::More;
5use Test::Fatal;
6
7use Class::MOP;
8
9my @calls;
10
11{
12 package Parent;
13
14 use strict;
15 use warnings;
16 use metaclass;
17
18 use Carp 'confess';
19
20 sub method { push @calls, 'Parent::method' }
21
22 package Child;
23
24 use strict;
25 use warnings;
26 use metaclass;
27
28 use base 'Parent';
29
30 Child->meta->add_around_method_modifier(
31 'method' => sub {
32 my $orig = shift;
33 push @calls, 'before Child::method';
34 $orig->(@_);
35 push @calls, 'after Child::method';
36 }
37 );
38}
39
40Parent->method;
41
42is_deeply(
43 [ splice @calls ],
44 [
45 'Parent::method',
46 ]
47);
48
49Child->method;
50
51is_deeply(
52 [ splice @calls ],
53 [
54 'before Child::method',
55 'Parent::method',
56 'after Child::method',
57 ]
58);
59
60{
61 package Parent;
62
63 Parent->meta->add_around_method_modifier(
64 'method' => sub {
65 my $orig = shift;
66 push @calls, 'before Parent::method';
67 $orig->(@_);
68 push @calls, 'after Parent::method';
69 }
70 );
71}
72
73Parent->method;
74
75is_deeply(
76 [ splice @calls ],
77 [
78 'before Parent::method',
79 'Parent::method',
80 'after Parent::method',
81 ]
82);
83
84Child->method;
85
86TODO: {
87 local $TODO = "pending fix";
88 is_deeply(
89 [ splice @calls ],
90 [
91 'before Child::method',
92 'before Parent::method',
93 'Parent::method',
94 'after Parent::method',
95 'after Child::method',
96 ],
97 "cache is correctly invalidated when the parent method is wrapped"
98 );
99}
100
101done_testing;