blib/lib/CGI/Application/Plugin/Authentication/Driver/Filter/lc.pm | |||
---|---|---|---|
Criterion | Covered | Total | % |
statement | 8 | 8 | 100.0 |
branch | 2 | 2 | 100.0 |
condition | n/a | ||
subroutine | 4 | 4 | 100.0 |
pod | 2 | 2 | 100.0 |
total | 16 | 16 | 100.0 |
line | stmt | bran | cond | sub | pod | time | code |
---|---|---|---|---|---|---|---|
1 | package CGI::Application::Plugin::Authentication::Driver::Filter::lc; | ||||||
2 | $CGI::Application::Plugin::Authentication::Driver::Filter::lc::VERSION = '0.23'; | ||||||
3 | 1 | 1 | 52581 | use strict; | |||
1 | 8 | ||||||
1 | 23 | ||||||
4 | 1 | 1 | 4 | use warnings; | |||
1 | 2 | ||||||
1 | 70 | ||||||
5 | |||||||
6 | sub check { | ||||||
7 | 2 | 100 | 2 | 1 | 11 | return ( lc $_[2] eq $_[3] ) ? 1 : 0; | |
8 | } | ||||||
9 | |||||||
10 | sub filter { | ||||||
11 | 1 | 1 | 1 | 78 | return lc( $_[2] ); | ||
12 | } | ||||||
13 | |||||||
14 | 1; | ||||||
15 | __END__ |