| blib/lib/oos.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 0 | 6 | 0.0 |
| branch | 0 | 2 | 0.0 |
| condition | n/a | ||
| subroutine | 0 | 2 | 0.0 |
| pod | 0 | 1 | 0.0 |
| total | 0 | 11 | 0.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | package oos; | ||||||
| 2 | |||||||
| 3 | sub import { | ||||||
| 4 | 0 | 0 | 0 | moos() if $0 eq '-'; | |||
| 5 | 0 | require Moos; | |||||
| 6 | 0 | splice @_, 0, 1, 'Moos'; | |||||
| 7 | 0 | goto &Moos::import; | |||||
| 8 | } | ||||||
| 9 | |||||||
| 10 | sub moos { | ||||||
| 11 | 0 | 0 | 0 | print <<'EOEOMOO'; | |||
| 12 | ______ ______ | ||||||
| 13 | < Moo! > < !ooM > | ||||||
| 14 | ------ ------ | ||||||
| 15 | ^__^ / \ ^__^ | ||||||
| 16 | _______/(ΓΆΓΆ) / \ (oo)\_______ | ||||||
| 17 | /\/( ingy /(__) (__)\ tsm )\/\ | ||||||
| 18 | | w----|| / ||----w | | ||||||
| 19 | || || || || | ||||||
| 20 | EOEOMOO | ||||||
| 21 | 0 | exit 0; | |||||
| 22 | } | ||||||
| 23 | |||||||
| 24 | 1; |