Perl: Update "prove" and add its dependencies so it actually works (again)
[msysgit.git] / lib / perl5 / 5.8.8 / TAP / Parser / Result / Unknown.pm
blob861de5e29fa8bd96116cb5f874c9740b25a3a6cd
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.23
19 =cut
21 $VERSION = '3.23';
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