File Coverage

blib/lib/WebService/Shutterstock/SearchResult/Item.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 WebService::Shutterstock::SearchResult::Item;
2             {
3             $WebService::Shutterstock::SearchResult::Item::VERSION = '0.006';
4             }
5              
6             # ABSTRACT: role representing common attributes for various search result types
7              
8 9     9   57 use strict;
  9         20  
  9         354  
9 9     9   51 use warnings;
  9         19  
  9         243  
10 9     9   59 use Moo::Role;
  9         30  
  9         74  
11              
12             has web_url => ( is => 'ro' );
13             has description => ( is => 'ro' );
14              
15              
16             1;
17              
18             __END__