really add the new files
[gitmo/moose-presentations.git] / moose-class / exercises / t / lib / Test / TAP / Parser / Result / Unknown.pm
1 package TAP::Parser::Result::Unknown;
2
3 use strict;
4
5 use vars qw($VERSION @ISA);
6 use TAP::Parser::Result;
7 @ISA = 'TAP::Parser::Result';
8
9 use vars qw($VERSION);
10
11 =head1 NAME
12
13 TAP::Parser::Result::Unknown - Unknown result token.
14
15 =head1 VERSION
16
17 Version 3.17
18
19 =cut
20
21 $VERSION = '3.17';
22
23 =head1 DESCRIPTION
24
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:
27
28  1..5
29  VERSION 7
30  ok 1 - woo hooo!
31  ... woo hooo! is cool!
32
33 In the above "TAP", the second and fourth lines will generate "Unknown"
34 tokens.
35
36 =head1 OVERRIDDEN METHODS
37
38 Mainly listed here to shut up the pitiful screams of the pod coverage tests.
39 They 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
51 1;