File Coverage

blib/lib/Task/Toolchain/Test.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             package Task::Toolchain::Test;
2              
3 1     1   39993 use warnings;
  1         3  
  1         34  
4 1     1   6 use strict;
  1         3  
  1         86  
5              
6             =head1 NAME
7              
8             Task::Toolchain::Test - Install most common test toolchain modules
9              
10             =head1 VERSION
11              
12             Version 0.01
13              
14             =cut
15              
16             our $VERSION = '0.01';
17              
18             =head1 SUMMARY
19              
20             It's annoying sitting down at a new box and discovering that you don't have
21             the latest testing modules installed. Or you're writing a test and and you
22             find out that you didn't have L installed after all.
23              
24             =head2 Test Modules
25              
26             This task installs relatively new versions of the following modules:
27              
28             =over 4
29              
30             =item * L
31              
32             =item * L
33              
34             =item * L
35              
36             =item * L
37              
38             =item * L
39              
40             =item * L
41              
42             =item * L
43              
44             =item * L
45              
46             =item * L
47              
48             =item * L
49              
50             =item * L
51              
52             =item * L
53              
54             =item * L
55              
56             =item * L
57              
58             =item * L
59              
60             =item * L
61              
62             =item * L
63              
64             =item * L
65              
66             =back
67              
68             =head2 How Were They Chosen?
69              
70             Three criteria were used to choose the above list:
71              
72             =over 4
73              
74             =item * Ovid's list of most popular testing modules.
75              
76             L
77              
78             =item * Modules that are easy to install.
79              
80             I love L, but its high failure rate means that it was
81             left off this list.
82              
83             =item * Modules which should be more popular.
84              
85             This is where people might gripe because I not only included L,
86             but also two of my C<*::Most> testing modules. Though to be fair, I've
87             written, have commit access or patches to much of the above list, so maybe all
88             of this is an exercise in vanity. Sue me :)
89              
90             =back
91              
92             =head1 AUTHOR
93              
94             Curtis "Ovid" Poe, C<< >>
95              
96             =head1 BUGS
97              
98             Please report any bugs or feature requests to C
99             rt.cpan.org>, or through the web interface at
100             L. I will
101             be notified, and then you'll automatically be notified of progress on your bug
102             as I make changes.
103              
104             =head1 SUPPORT
105              
106             You can find documentation for this module with the perldoc command.
107              
108             perldoc Task::Toolchain::Test
109              
110             You can also look for information at:
111              
112             =over 4
113              
114             =item * RT: CPAN's request tracker
115              
116             L
117              
118             =item * AnnoCPAN: Annotated CPAN documentation
119              
120             L
121              
122             =item * CPAN Ratings
123              
124             L
125              
126             =item * Search CPAN
127              
128             L
129              
130             =back
131              
132             =head1 ACKNOWLEDGEMENTS
133              
134             Vienna.pm (L) sponsored the 2010 Perl QA Hackathon
135             (L). Some bootstrapping issues we were
136             trying to resolve led to his module.
137              
138             =head1 COPYRIGHT & LICENSE
139              
140             Copyright 2010 Curtis "Ovid" Poe, all rights reserved.
141              
142             This program is free software; you can redistribute it and/or modify it
143             under the same terms as Perl itself.
144              
145             =cut
146              
147             1;