File Coverage

blib/lib/TAP/Parser/Result/Unknown.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package TAP::Parser::Result::Unknown;
2              
3 32     32   119 use strict;
  32         66  
  32         861  
4 32     32   112 use warnings;
  32         37  
  32         776  
5              
6 32     32   129 use base 'TAP::Parser::Result';
  32         34  
  32         2496  
7              
8             =head1 NAME
9              
10             TAP::Parser::Result::Unknown - Unknown result token.
11              
12             =head1 VERSION
13              
14             Version 3.39
15              
16             =cut
17              
18             our $VERSION = '3.39';
19              
20             =head1 DESCRIPTION
21              
22             This is a subclass of L. A token of this class will be
23             returned if the parser does not recognize the token line. For example:
24              
25             1..5
26             VERSION 7
27             ok 1 - woo hooo!
28             ... woo hooo! is cool!
29              
30             In the above "TAP", the second and fourth lines will generate "Unknown"
31             tokens.
32              
33             =head1 OVERRIDDEN METHODS
34              
35             Mainly listed here to shut up the pitiful screams of the pod coverage tests.
36             They keep me awake at night.
37              
38             =over 4
39              
40             =item * C
41              
42             =item * C
43              
44             =back
45              
46             =cut
47              
48             1;