| blib/lib/App/chkfacl.pm | |||
|---|---|---|---|
| Criterion | Covered | Total | % | 
| statement | 15 | 15 | 100.0 | 
| branch | n/a | ||
| condition | n/a | ||
| subroutine | 5 | 5 | 100.0 | 
| pod | n/a | ||
| total | 20 | 20 | 100.0 | 
| line | stmt | bran | cond | sub | pod | time | code | 
|---|---|---|---|---|---|---|---|
| 1 | package App::chkfacl; | ||||||
| 2 | |||||||
| 3 | # Created on: 2015-03-05 19:53:03 | ||||||
| 4 | # Create by: Ivan Wills | ||||||
| 5 | # $Id$ | ||||||
| 6 | # $Revision$, $HeadURL$, $Date$ | ||||||
| 7 | # $Revision$, $Source$, $Date$ | ||||||
| 8 | |||||||
| 9 | 1 | 1 | 29499 | use strict; | |||
| 1 | 2 | ||||||
| 1 | 44 | ||||||
| 10 | 1 | 1 | 7 | use warnings; | |||
| 1 | 1 | ||||||
| 1 | 40 | ||||||
| 11 | 1 | 1 | 7 | use Carp; | |||
| 1 | 8 | ||||||
| 1 | 110 | ||||||
| 12 | 1 | 1 | 965 | use English qw/ -no_match_vars /; | |||
| 1 | 5202 | ||||||
| 1 | 8 | ||||||
| 13 | 1 | 1 | 591 | use base qw/Exporter/; | |||
| 1 | 2 | ||||||
| 1 | 192 | ||||||
| 14 | |||||||
| 15 | our $VERSION = 0.4; | ||||||
| 16 | our @EXPORT_OK = qw//; | ||||||
| 17 | our %EXPORT_TAGS = (); | ||||||
| 18 | |||||||
| 19 | 1; | ||||||
| 20 | |||||||
| 21 | __END__ |