File Coverage

blib/lib/WWW/OpenSearch/Query.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 WWW::OpenSearch::Query;
2              
3 1     1   1674 use strict;
  1         1  
  1         36  
4 1     1   5 use warnings;
  1         2  
  1         31  
5              
6 1     1   4 use base qw( Class::Accessor::Fast );
  1         1  
  1         99  
7              
8             __PACKAGE__->mk_accessors( qw( role searchTerms ) );
9              
10             =head1 NAME
11              
12             WWW::OpenSearch::Query - Object to represent a sample query
13              
14             =head1 SYNOPSIS
15              
16             =head1 DESCRIPTION
17              
18             =head1 CONSTRUCTOR
19              
20             =head2 new( [%options] )
21              
22             =head1 ACCESSORS
23              
24             =over 4
25              
26             =item * role
27              
28             =item * searchTerms
29              
30             =back
31              
32             =head1 AUTHOR
33              
34             =over 4
35              
36             =item * Tatsuhiko Miyagawa Emiyagawa@bulknews.netE
37              
38             =item * Brian Cassidy Ebricas@cpan.orgE
39              
40             =back
41              
42             =head1 COPYRIGHT AND LICENSE
43              
44             Copyright 2005-2013 by Tatsuhiko Miyagawa and Brian Cassidy
45              
46             This library is free software; you can redistribute it and/or modify
47             it under the same terms as Perl itself.
48              
49             =cut
50              
51             1;