1package TAP::Parser::Result::Unknown;
2
3use strict;
4use warnings;
5
6use base 'TAP::Parser::Result';
7
8=head1 NAME
9
10TAP::Parser::Result::Unknown - Unknown result token.
11
12=head1 VERSION
13
14Version 3.42
15
16=cut
17
18our $VERSION = '3.42';
19
20=head1 DESCRIPTION
21
22This is a subclass of L<TAP::Parser::Result>.  A token of this class will be
23returned 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
30In the above "TAP", the second and fourth lines will generate "Unknown"
31tokens.
32
33=head1 OVERRIDDEN METHODS
34
35Mainly listed here to shut up the pitiful screams of the pod coverage tests.
36They keep me awake at night.
37
38=over 4
39
40=item * C<as_string>
41
42=item * C<raw>
43
44=back
45
46=cut
47
481;
49