line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Test::Builder::TodoDiag; |
2
|
162
|
|
|
162
|
|
1167
|
use strict; |
|
162
|
|
|
|
|
370
|
|
|
162
|
|
|
|
|
5051
|
|
3
|
162
|
|
|
162
|
|
871
|
use warnings; |
|
162
|
|
|
|
|
324
|
|
|
162
|
|
|
|
|
9877
|
|
4
|
|
|
|
|
|
|
|
5
|
|
|
|
|
|
|
our $VERSION = '1.302182'; |
6
|
|
|
|
|
|
|
|
7
|
162
|
|
|
162
|
|
1062
|
BEGIN { require Test2::Event::Diag; our @ISA = qw(Test2::Event::Diag) } |
|
162
|
|
|
|
|
18538
|
|
8
|
|
|
|
|
|
|
|
9
|
0
|
|
|
0
|
1
|
0
|
sub diagnostics { 0 } |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
sub facet_data { |
12
|
610
|
|
|
610
|
1
|
966
|
my $self = shift; |
13
|
610
|
|
|
|
|
1471
|
my $out = $self->SUPER::facet_data(); |
14
|
610
|
|
|
|
|
1226
|
$out->{info}->[0]->{debug} = 0; |
15
|
610
|
|
|
|
|
1402
|
return $out; |
16
|
|
|
|
|
|
|
} |
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
1; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
__END__ |
21
|
|
|
|
|
|
|
|
22
|
|
|
|
|
|
|
=pod |
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=encoding UTF-8 |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
=head1 NAME |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Test::Builder::TodoDiag - Test::Builder subclass of Test2::Event::Diag |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
=head1 DESCRIPTION |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
This is used to encapsulate diag messages created inside TODO. |
33
|
|
|
|
|
|
|
|
34
|
|
|
|
|
|
|
=head1 SYNOPSIS |
35
|
|
|
|
|
|
|
|
36
|
|
|
|
|
|
|
You do not need to use this directly. |
37
|
|
|
|
|
|
|
|
38
|
|
|
|
|
|
|
=head1 SOURCE |
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
The source code repository for Test2 can be found at |
41
|
|
|
|
|
|
|
F<http://github.com/Test-More/test-more/>. |
42
|
|
|
|
|
|
|
|
43
|
|
|
|
|
|
|
=head1 MAINTAINERS |
44
|
|
|
|
|
|
|
|
45
|
|
|
|
|
|
|
=over 4 |
46
|
|
|
|
|
|
|
|
47
|
|
|
|
|
|
|
=item Chad Granum E<lt>exodist@cpan.orgE<gt> |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
=back |
50
|
|
|
|
|
|
|
|
51
|
|
|
|
|
|
|
=head1 AUTHORS |
52
|
|
|
|
|
|
|
|
53
|
|
|
|
|
|
|
=over 4 |
54
|
|
|
|
|
|
|
|
55
|
|
|
|
|
|
|
=item Chad Granum E<lt>exodist@cpan.orgE<gt> |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
=back |
58
|
|
|
|
|
|
|
|
59
|
|
|
|
|
|
|
=head1 COPYRIGHT |
60
|
|
|
|
|
|
|
|
61
|
|
|
|
|
|
|
Copyright 2020 Chad Granum E<lt>exodist@cpan.orgE<gt>. |
62
|
|
|
|
|
|
|
|
63
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or |
64
|
|
|
|
|
|
|
modify it under the same terms as Perl itself. |
65
|
|
|
|
|
|
|
|
66
|
|
|
|
|
|
|
See F<http://dev.perl.org/licenses/> |
67
|
|
|
|
|
|
|
|
68
|
|
|
|
|
|
|
=cut |