File Coverage

blib/lib/WebService/IMDBAPI/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 3     3   25913 use strict;
  3         8  
  3         111  
2 3     3   16 use warnings;
  3         7  
  3         223  
3              
4             package WebService::IMDBAPI::Result;
5             {
6             $WebService::IMDBAPI::Result::VERSION = '1.130150';
7             }
8              
9             # ABSTRACT: Represents a result
10              
11             # Assessors
12             # alphabetically, case insensitive
13 3         22 use Object::Tiny qw(
14             actors
15             also_known_as
16             country
17             directors
18             episodes
19             film_locations
20             genres
21             imdb_id
22             imdb_url
23             language
24             plot
25             plot_simple
26             poster
27             rated
28             rating
29             rating_count
30             release_date
31             runtime
32             title
33             type
34             writers
35             year
36 3     3   2744 );
  3         1396  
37              
38             1;
39              
40              
41              
42             =pod
43              
44             =head1 NAME
45              
46             WebService::IMDBAPI::Result - Represents a result
47              
48             =head1 VERSION
49              
50             version 1.130150
51              
52             =head1 DESCRIPTION
53              
54             See L for details of the attributes contained in this object.
55              
56             Note that the presence and contents of some of these attributes can differ depending on the options passed to the search.
57              
58             =head1 ATTRIBUTES
59              
60             =head2 actors
61              
62             =head2 also_known_as
63              
64             =head2 country
65              
66             =head2 directors
67              
68             =head2 episodes
69              
70             =head2 film_locations
71              
72             =head2 genres
73              
74             =head2 imdb_id
75              
76             =head2 imdb_url
77              
78             =head2 language
79              
80             =head2 plot
81              
82             =head2 plot_simple
83              
84             =head2 poster
85              
86             =head2 rated
87              
88             =head2 rating
89              
90             =head2 rating_count
91              
92             =head2 release_date
93              
94             =head2 runtime
95              
96             =head2 title
97              
98             =head2 type
99              
100             =head2 writers
101              
102             =head2 year
103              
104             =head1 AUTHOR
105              
106             Andrew Jones
107              
108             =head1 COPYRIGHT AND LICENSE
109              
110             This software is copyright (c) 2013 by Andrew Jones.
111              
112             This is free software; you can redistribute it and/or modify it under
113             the same terms as the Perl 5 programming language system itself.
114              
115             =cut
116              
117              
118             __END__