File Coverage

blib/lib/Minion/Notifier/Transport.pm
Criterion Covered Total %
statement 3 5 60.0
branch n/a
condition n/a
subroutine 1 4 25.0
pod 0 2 0.0
total 4 11 36.3


line stmt bran cond sub pod time code
1             package Minion::Notifier::Transport;
2              
3 1     1   548 use Mojo::Base 'Mojo::EventEmitter';
  1         2  
  1         7  
4              
5 0     0 0   sub listen { die 'not implemented' }
6              
7 0     0 0   sub send { die 'not implemented' }
8              
9       0     sub _start { }
10              
11             1;
12