File Coverage

blib/lib/Tak/Client/Router.pm
Criterion Covered Total %
statement 3 4 75.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod 0 1 0.0
total 4 7 57.1


line stmt bran cond sub pod time code
1             package Tak::Client::Router;
2              
3 1     1   557 use Moo;
  1         1  
  1         6  
4              
5             extends 'Tak::Client';
6              
7             sub ensure {
8 0     0 0   shift->do(meta => ensure => @_);
9             }
10              
11             1;