File Coverage

blib/lib/AnyEvent/FTP/Server/Role/Context.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package AnyEvent::FTP::Server::Role::Context;
2              
3 26     26   351041 use strict;
  26         68  
  26         1098  
4 26     26   175 use warnings;
  26         74  
  26         1384  
5 26     26   476 use 5.010;
  26         96  
6 26     26   137 use Moo::Role;
  26         136  
  26         211  
7              
8             # ABSTRACT: Server connection context role
9             our $VERSION = '0.20'; # VERSION
10              
11             requires 'push_request';
12              
13             1;
14              
15             __END__