1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
|
use strict;
use warnings;
use Test::More;
use Test::Requires {
'Test::Pod::Coverage' => '1.04', # skip all if not installed
};
# This is a stripped down version of all_pod_coverage_ok which lets us
# vary the trustme parameter per module.
my @modules
= grep { !/Accessor::Native.*$/ && !/::Conflicts$/ && !/^Moose::Exception::/ } all_modules();
plan tests => scalar @modules;
my %trustme = (
'Class::MOP' => [
'DEBUG_NO_META',
'HAVE_ISAREV',
'IS_RUNNING_ON_5_10',
'subname',
'in_global_destruction',
'check_package_cache_flag',
'load_first_existing_class',
'is_class_loaded',
'load_class',
],
'Class::MOP::Attribute' => ['process_accessors'],
'Class::MOP::Class' => [
# deprecated
'alias_method',
'compute_all_applicable_attributes',
'compute_all_applicable_methods',
# unfinished feature
'add_dependent_meta_instance',
'add_meta_instance_dependencies',
'invalidate_meta_instance',
'invalidate_meta_instances',
'remove_dependent_meta_instance',
'remove_meta_instance_dependencies',
'update_meta_instance_dependencies',
# effectively internal
'check_metaclass_compatibility',
'clone_instance',
'construct_class_instance',
'construct_instance',
'create_meta_instance',
'reset_package_cache_flag',
'update_package_cache_flag',
'reinitialize',
# doc'd with rebless_instance
'rebless_instance_away',
# deprecated
'get_attribute_map',
],
'Class::MOP::Class::Immutable::Trait' => ['.+'],
'Class::MOP::Class::Immutable::Class::MOP::Class' => ['.+'],
'Class::MOP::Deprecated' => ['.+'],
'Class::MOP::Instance' => [
qw( BUILDARGS
bless_instance_structure
is_dependent_on_superclasses ),
],
'Class::MOP::Instance' => [
qw( BUILDARGS
bless_instance_structure
is_dependent_on_superclasses ),
],
'Class::MOP::Method::Accessor' => [
qw( generate_accessor_method
generate_accessor_method_inline
generate_clearer_method
generate_clearer_method_inline
generate_predicate_method
generate_predicate_method_inline
generate_reader_method
generate_reader_method_inline
generate_writer_method
generate_writer_method_inline
initialize_body
)
],
'Class::MOP::Method::Constructor' => [
qw( attributes
generate_constructor_method
generate_constructor_method_inline
initialize_body
meta_instance
options
)
],
'Class::MOP::Method::Generated' => [
qw( new
definition_context
is_inline
initialize_body
)
],
'Class::MOP::MiniTrait' => ['.+'],
'Class::MOP::Mixin::AttributeCore' => ['.+'],
'Class::MOP::Mixin::HasAttributes' => ['.+'],
'Class::MOP::Mixin::HasMethods' => ['.+'],
'Class::MOP::Mixin::HasOverloads' => ['.+'],
'Class::MOP::Overload' => [ 'attach_to_class' ],
'Class::MOP::Package' => [ 'get_method_map', 'wrap_method_body' ],
'Moose' => [ 'init_meta', 'throw_error' ],
'Moose::Error::Confess' => ['new'],
'Moose::Exception' => ['BUILD'],
'Moose::Meta::Attribute' => [
qw( interpolate_class
throw_error
attach_to_class
)
],
'Moose::Meta::Attribute::Native::MethodProvider::Array' => ['.+'],
'Moose::Meta::Attribute::Native::MethodProvider::Bool' => ['.+'],
'Moose::Meta::Attribute::Native::MethodProvider::Code' => ['.+'],
'Moose::Meta::Attribute::Native::MethodProvider::Counter' => ['.+'],
'Moose::Meta::Attribute::Native::MethodProvider::Hash' => ['.+'],
'Moose::Meta::Attribute::Native::MethodProvider::String' => ['.+'],
'Moose::Meta::Class' => [
qw( check_metaclass_compatibility
construct_instance
create_error
raise_error
reinitialize
superclasses
)
],
'Moose::Meta::Class::Immutable::Trait' => ['.+'],
'Moose::Meta::Method' => ['throw_error'],
'Moose::Meta::Method::Accessor' => [
qw( generate_accessor_method
generate_accessor_method_inline
generate_clearer_method
generate_predicate_method
generate_reader_method
generate_reader_method_inline
generate_writer_method
generate_writer_method_inline
new
)
],
'Moose::Meta::Method::Constructor' => [
qw( attributes
initialize_body
meta_instance
new
options
)
],
'Moose::Meta::Method::Destructor' => [ 'initialize_body', 'options' ],
'Moose::Meta::Method::Meta' => ['wrap'],
'Moose::Meta::Role' => [
qw( alias_method
get_method_modifier_list
reinitialize
reset_package_cache_flag
update_package_cache_flag
wrap_method_body
)
],
'Moose::Meta::Mixin::AttributeCore' => ['.+'],
'Moose::Meta::Role::Composite' => [
qw( add_method
get_method
get_method_list
has_method
is_anon
add_overloaded_operator
get_all_overloaded_operators
get_overload_fallback_value
is_overloaded
set_overload_fallback_value
),
],
'Moose::Object' => [ 'BUILDALL', 'DEMOLISHALL' ],
'Moose::Role' => [
qw( after
around
augment
before
extends
has
inner
override
super
with
init_meta )
],
'Moose::Meta::TypeCoercion' => ['compile_type_coercion'],
'Moose::Meta::TypeCoercion::Union' => ['compile_type_coercion'],
'Moose::Meta::TypeConstraint' => [qw( compile_type_constraint inlined )],
'Moose::Meta::TypeConstraint::Class' =>
[qw( equals is_a_type_of is_a_subtype_of )],
'Moose::Meta::TypeConstraint::Enum' => [qw( constraint equals )],
'Moose::Meta::TypeConstraint::DuckType' =>
[qw( constraint equals get_message )],
'Moose::Meta::TypeConstraint::Parameterizable' => ['.+'],
'Moose::Meta::TypeConstraint::Parameterized' => ['.+'],
'Moose::Meta::TypeConstraint::Role' => [qw( equals is_a_type_of )],
'Moose::Meta::TypeConstraint::Union' => [
qw( compile_type_constraint
coercion
has_coercion
can_be_inlined
inline_environment )
],
'Moose::Util' => ['add_method_modifier'],
'Moose::Util::MetaRole' => ['apply_metaclass_roles'],
'Moose::Util::TypeConstraints' => ['find_or_create_type_constraint'],
'Moose::Util::TypeConstraints::Builtins' => ['.+'],
);
for my $module ( sort @modules ) {
my $trustme = [];
if ( $trustme{$module} ) {
my $methods = join '|', @{ $trustme{$module} };
$trustme = [qr/^(?:$methods)$/];
}
pod_coverage_ok(
$module, { trustme => $trustme },
"Pod coverage for $module"
);
}
|