File Coverage

blib/lib/AnyEvent/FTP/Server/Role/ResponseEncoder.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::ResponseEncoder;
2              
3 25     25   18229 use strict;
  25         42  
  25         567  
4 25     25   105 use warnings;
  25         43  
  25         440  
5 25     25   311 use 5.010;
  25         86  
6 25     25   101 use Moo::Role;
  25         42  
  25         164  
7              
8             # ABSTRACT: Server response encoder role
9             our $VERSION = '0.19'; # VERSION
10              
11             requires 'encode';
12             requires 'new';
13              
14             1;
15              
16             __END__