File Coverage

blib/lib/Net/Gotify/User.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 19 19 100.0


line stmt bran cond sub pod time code
1             package Net::Gotify::User;
2              
3 1     1   19 use 5.010000;
  1         5  
4 1     1   7 use strict;
  1         2  
  1         60  
5 1     1   7 use warnings;
  1         2  
  1         52  
6 1     1   6 use utf8;
  1         2  
  1         7  
7              
8 1     1   130 use Moo;
  1         2  
  1         6  
9              
10             has admin => (is => 'rw');
11             has id => (is => 'rw');
12             has name => (is => 'rw');
13              
14             1;
15              
16             __END__