File Coverage

blib/lib/WebService/Toggl/API/ProjectUsers.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 4 50.0
pod n/a
total 8 12 66.6


line stmt bran cond sub pod time code
1             package WebService::Toggl::API::ProjectUsers;
2              
3 1     1   987 use Moo;
  1         2  
  1         4  
4             with 'WebService::Toggl::Role::API', 'WebService::Toggl::Role::Set';
5 1     1   321 use namespace::clean;
  1         2  
  1         5  
6              
7 0     0     sub list_of { '::ProjectUser' }
8              
9 0     0     sub api_path { 'project_users' }
10              
11              
12             1;
13             __END__