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   17280 use strict;
  26         72  
  26         924  
4 26     26   182 use warnings;
  26         62  
  26         935  
5 26     26   578 use 5.010;
  26         109  
6 26     26   175 use Moo::Role;
  26         92  
  26         258  
7              
8             # ABSTRACT: Server connection context role
9             our $VERSION = '0.17'; # VERSION
10              
11             requires 'push_request';
12              
13             1;
14              
15             __END__