File Coverage

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