File Coverage

blib/lib/WWW/OpenSearch/Image.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::Image;
2              
3 1     1   991 use strict;
  1         2  
  1         35  
4 1     1   5 use warnings;
  1         2  
  1         29  
5              
6 1     1   5 use base qw( Class::Accessor::Fast );
  1         2  
  1         98  
7              
8             __PACKAGE__->mk_accessors( qw( height width type url ) );
9              
10             =head1 NAME
11              
12             WWW::OpenSearch::Image - Object to represent an image
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 * height
27              
28             =item * width
29              
30             =item * type
31              
32             =item * url
33              
34             =back
35              
36             =head1 AUTHOR
37              
38             =over 4
39              
40             =item * Tatsuhiko Miyagawa Emiyagawa@bulknews.netE
41              
42             =item * Brian Cassidy Ebricas@cpan.orgE
43              
44             =back
45              
46             =head1 COPYRIGHT AND LICENSE
47              
48             Copyright 2005-2013 by Tatsuhiko Miyagawa and Brian Cassidy
49              
50             This library is free software; you can redistribute it and/or modify
51             it under the same terms as Perl itself.
52              
53             =cut
54              
55             1;