| blib/lib/URI/ftps.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 12 | 12 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 6 | 6 | 100.0 |
| pod | 2 | 3 | 66.6 |
| total | 20 | 21 | 95.2 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package URI::ftps; | ||||||
| 2 | |||||||
| 3 | 1 | 1 | 9 | use strict; | |||
| 1 | 15 | ||||||
| 1 | 49 | ||||||
| 4 | 1 | 1 | 6 | use warnings; | |||
| 1 | 2 | ||||||
| 1 | 139 | ||||||
| 5 | |||||||
| 6 | our $VERSION = '5.34'; | ||||||
| 7 | |||||||
| 8 | 1 | 1 | 9 | use parent 'URI::ftp'; | |||
| 1 | 2 | ||||||
| 1 | 10 | ||||||
| 9 | |||||||
| 10 | 1 | 1 | 1 | 2 | sub default_port { 990 } | ||
| 11 | |||||||
| 12 | 1 | 1 | 1 | 5 | sub secure { 1 } | ||
| 13 | |||||||
| 14 | 1 | 1 | 0 | 5 | sub encrypt_mode { 'implicit' } | ||
| 15 | |||||||
| 16 | 1; |