pull from upstream repository
[git-darcs-import.git] / tests / lib / perl / TAP / Parser / Result / Unknown.pm
blob94ab7f8706649f72a519abf5b871c300201573ff
1 package TAP::Parser::Result::Unknown;
3 use strict;
5 use vars qw($VERSION @ISA);
6 use TAP::Parser::Result;
7 @ISA = 'TAP::Parser::Result';
9 use vars qw($VERSION);
11 =head1 NAME
13 TAP::Parser::Result::Unknown - Unknown result token.
15 =head1 VERSION
17 Version 3.07
19 =cut
21 $VERSION = '3.07';
23 =head1 DESCRIPTION
25 This is a subclass of L<TAP::Parser::Result>. A token of this class will be
26 returned if the parser does not recognize the token line. For example:
28 1..5
29 VERSION 7
30 ok 1 - woo hooo!
31 ... woo hooo! is cool!
33 In the above "TAP", the second and fourth lines will generate "Unknown"
34 tokens.
36 =head1 OVERRIDDEN METHODS
38 Mainly listed here to shut up the pitiful screams of the pod coverage tests.
39 They keep me awake at night.
41 =over 4
43 =item * C<as_string>
45 =item * C<raw>
47 =back
49 =cut