File Coverage

blib/lib/Mastodon/Role/Entity.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 Mastodon::Role::Entity;
2              
3 7     7   12625 use strict;
  7         26  
  7         225  
4 7     7   57 use warnings;
  7         18  
  7         315  
5              
6             our $VERSION = '0.017';
7              
8 7     7   59 use Moo::Role;
  7         23  
  7         75  
9              
10             has _client => ( is => 'rw', weaken => 1);
11              
12             1;