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 | 28757 | use strict; | |||
25 | 395 | ||||||
25 | 875 | ||||||
4 | 25 | 25 | 138 | use warnings; | |||
25 | 54 | ||||||
25 | 644 | ||||||
5 | 25 | 25 | 423 | use 5.010; | |||
25 | 2034 | ||||||
6 | 25 | 25 | 171 | use Moo::Role; | |||
25 | 83 | ||||||
25 | 237 | ||||||
7 | |||||||
8 | # ABSTRACT: Server response encoder role | ||||||
9 | our $VERSION = '0.17'; # VERSION | ||||||
10 | |||||||
11 | requires 'encode'; | ||||||
12 | requires 'new'; | ||||||
13 | |||||||
14 | 1; | ||||||
15 | |||||||
16 | __END__ |