This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
a476896d576d7a8c59d5c2d475eb11a2cfbba62f
[perl5.git] / cpan / Test-Harness / lib / TAP / Parser / Result / Unknown.pm
1 package TAP::Parser::Result::Unknown;
2
3 use strict;
4 use warnings;
5
6 use base 'TAP::Parser::Result';
7
8 =head1 NAME
9
10 TAP::Parser::Result::Unknown - Unknown result token.
11
12 =head1 VERSION
13
14 Version 3.38
15
16 =cut
17
18 our $VERSION = '3.38';
19
20 =head1 DESCRIPTION
21
22 This is a subclass of L<TAP::Parser::Result>.  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<as_string>
41
42 =item * C<raw>
43
44 =back
45
46 =cut
47
48 1;