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 5     5   8906 use strict;
  5         13  
  5         141  
4 5     5   27 use warnings;
  5         11  
  5         199  
5              
6             our $VERSION = '0.012';
7              
8 5     5   26 use Moo::Role;
  5         10  
  5         54  
9              
10             has _client => ( is => 'rw', weaken => 1);
11              
12             1;