| blib/lib/URI/ssh.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 11 | 11 | 100.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 5 | 5 | 100.0 |
| pod | 2 | 2 | 100.0 |
| total | 18 | 18 | 100.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package URI::ssh; | ||||||
| 2 | |||||||
| 3 | 3 | 3 | 1200 | use strict; | |||
| 3 | 7 | ||||||
| 3 | 133 | ||||||
| 4 | 3 | 3 | 16 | use warnings; | |||
| 3 | 6 | ||||||
| 3 | 277 | ||||||
| 5 | |||||||
| 6 | our $VERSION = '5.34'; | ||||||
| 7 | |||||||
| 8 | 3 | 3 | 19 | use parent 'URI::_login'; | |||
| 3 | 5 | ||||||
| 3 | 27 | ||||||
| 9 | |||||||
| 10 | # ssh://[USER@]HOST[:PORT]/SRC | ||||||
| 11 | |||||||
| 12 | 3 | 3 | 1 | 8 | sub default_port { 22 } | ||
| 13 | |||||||
| 14 | 3 | 3 | 1 | 13 | sub secure { 1 } | ||
| 15 | |||||||
| 16 | 1; |