File Coverage

blib/lib/WebService/UrbanDictionary/Term/Definition.pm
Criterion Covered Total %
statement 3 3 100.0
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 4 4 100.0


line stmt bran cond sub pod time code
1             package WebService::UrbanDictionary::Term::Definition;
2              
3 1     1   12 use Moo;
  1         1  
  1         4  
4              
5             has 'defid' => ( is => 'ro' );
6             has 'word' => ( is => 'ro' );
7             has 'author' => ( is => 'ro' );
8             has 'permalink' => ( is => 'ro' );
9             has 'definition' => ( is => 'ro' );
10             has 'example' => ( is => 'ro' );
11             has 'thumbs_up' => ( is => 'ro' );
12             has 'thumbs_down' => ( is => 'ro' );
13             has 'current_vote' => ( is => 'ro' );
14              
15             1;
16              
17             __END__