File Coverage

blib/lib/TAPx/Parser/Result/Unknown.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


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