| blib/lib/SRS/EPP/Command/Delete.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 1 | 3 | 33.3 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 1 | 1 | 100.0 |
| pod | n/a | ||
| total | 2 | 4 | 50.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | |||||||
| 2 | |||||||
| 3 | package SRS::EPP::Command::Delete; | ||||||
| 4 | |||||||
| 5 | 1 | 1 | 1415 | use Moose; | |||
| 0 | |||||||
| 0 | |||||||
| 6 | extends 'SRS::EPP::Command'; | ||||||
| 7 | |||||||
| 8 | use Module::Pluggable search_path => [__PACKAGE__]; | ||||||
| 9 | with 'SRS::EPP::Command::PayloadClass'; | ||||||
| 10 | |||||||
| 11 | sub action { | ||||||
| 12 | "delete"; | ||||||
| 13 | } | ||||||
| 14 | |||||||
| 15 | 1; |