| blib/lib/Mail/IspMailGate/Filter/Dummy.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % |
| statement | 4 | 5 | 80.0 |
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 2 | 3 | 66.6 |
| pod | 1 | 2 | 50.0 |
| total | 7 | 10 | 70.0 |
| line | stmt | bran | cond | sub | pod | time | code |
|---|---|---|---|---|---|---|---|
| 1 | # -*- perl -*- | ||||||
| 2 | # | ||||||
| 3 | |||||||
| 4 | package Mail::IspMailGate::Filter::Dummy; | ||||||
| 5 | |||||||
| 6 | require 5.004; | ||||||
| 7 | 2 | 2 | 1387 | use strict; | |||
| 2 | 4 | ||||||
| 2 | 196 | ||||||
| 8 | |||||||
| 9 | require Mail::IspMailGate::Filter; | ||||||
| 10 | |||||||
| 11 | @::Mail::IspMailGate::Filter::Dummy::ISA = qw(Mail::IspMailGate::Filter); | ||||||
| 12 | |||||||
| 13 | 0 | 0 | 0 | 0 | sub setSign { "ispMailGate-Dummy"; }; | ||
| 14 | |||||||
| 15 | sub doFilter($$) { | ||||||
| 16 | # do nothing; | ||||||
| 17 | 2 | 2 | 1 | 8 | ''; | ||
| 18 | } |