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   10290 use strict;
  7         19  
  7         193  
4 7     7   35 use warnings;
  7         13  
  7         255  
5              
6             our $VERSION = '0.016';
7              
8 7     7   31 use Moo::Role;
  7         13  
  7         63  
9              
10             has _client => ( is => 'rw', weaken => 1);
11              
12             1;