xref: /openbsd-src/gnu/usr.bin/perl/cpan/Test-Harness/lib/TAP/Parser/Result/Unknown.pm (revision d13be5d47e4149db2549a9828e244d59dbc43f15)
1package TAP::Parser::Result::Unknown;
2
3use strict;
4
5use vars qw($VERSION @ISA);
6use TAP::Parser::Result;
7@ISA = 'TAP::Parser::Result';
8
9use vars qw($VERSION);
10
11=head1 NAME
12
13TAP::Parser::Result::Unknown - Unknown result token.
14
15=head1 VERSION
16
17Version 3.17
18
19=cut
20
21$VERSION = '3.17';
22
23=head1 DESCRIPTION
24
25This is a subclass of L<TAP::Parser::Result>.  A token of this class will be
26returned 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
33In the above "TAP", the second and fourth lines will generate "Unknown"
34tokens.
35
36=head1 OVERRIDDEN METHODS
37
38Mainly listed here to shut up the pitiful screams of the pod coverage tests.
39They keep me awake at night.
40
41=over 4
42
43=item * C<as_string>
44
45=item * C<raw>
46
47=back
48
49=cut
50
511;
52