File Coverage

blib/lib/Dezi/Test/Result.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package Dezi::Test::Result;
2 2     2   11 use Moose;
  2         5  
  2         12  
3             extends 'Dezi::Result';
4 2     2   12508 use Carp;
  2         4  
  2         143  
5 2     2   11 use namespace::autoclean;
  2         4  
  2         20  
6              
7             __PACKAGE__->meta->make_immutable;
8              
9             1;
10              
11             =head1 NAME
12              
13             Dezi::Test::Result - test result class
14              
15             =head1 METHODS
16              
17             See L<Dezi::Result> documentation.
18              
19             =head1 AUTHOR
20              
21             Peter Karman, E<lt>karpet@dezi.orgE<gt>
22              
23             =head1 BUGS
24              
25             Please report any bugs or feature requests to C<bug-dezi-app at rt.cpan.org>, or through
26             the web interface at L<http://rt.cpan.org/NoAuth/ReportBug.html?Queue=Dezi-App>.
27             I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.
28              
29             =head1 SUPPORT
30              
31             You can find documentation for this module with the perldoc command.
32              
33             perldoc Dezi::App
34              
35             You can also look for information at:
36              
37             =over 4
38              
39             =item * Website
40              
41             L<http://dezi.org/>
42              
43             =item * IRC
44              
45             #dezisearch at freenode
46              
47             =item * Mailing list
48              
49             L<https://groups.google.com/forum/#!forum/dezi-search>
50              
51             =item * RT: CPAN's request tracker
52              
53             L<http://rt.cpan.org/NoAuth/Bugs.html?Dist=Dezi-App>
54              
55             =item * AnnoCPAN: Annotated CPAN documentation
56              
57             L<http://annocpan.org/dist/Dezi-App>
58              
59             =item * CPAN Ratings
60              
61             L<http://cpanratings.perl.org/d/Dezi-App>
62              
63             =item * Search CPAN
64              
65             L<https://metacpan.org/dist/Dezi-App/>
66              
67             =back
68              
69             =head1 COPYRIGHT AND LICENSE
70              
71             Copyright 2014 by Peter Karman
72              
73             This library is free software; you can redistribute it and/or modify
74             it under the terms of the GPL v2 or later.
75              
76             =head1 SEE ALSO
77              
78             L<http://dezi.org/>, L<http://swish-e.org/>, L<http://lucy.apache.org/>
79