| 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 | 25153 | use strict; | |||
| 25 | 65 | ||||||
| 25 | 832 | ||||||
| 4 | 25 | 25 | 139 | use warnings; | |||
| 25 | 59 | ||||||
| 25 | 600 | ||||||
| 5 | 25 | 25 | 418 | use 5.010; | |||
| 25 | 89 | ||||||
| 6 | 25 | 25 | 156 | use Moo::Role; | |||
| 25 | 62 | ||||||
| 25 | 220 | ||||||
| 7 | |||||||
| 8 | # ABSTRACT: Server response encoder role | ||||||
| 9 | our $VERSION = '0.18'; # VERSION | ||||||
| 10 | |||||||
| 11 | requires 'encode'; | ||||||
| 12 | requires 'new'; | ||||||
| 13 | |||||||
| 14 | 1; | ||||||
| 15 | |||||||
| 16 | __END__ |