File Coverage

blib/lib/Authen/Credential/none.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             #+##############################################################################
2             # #
3             # File: Authen/Credential/none.pm #
4             # #
5             # Description: abstraction of a "none" credential #
6             # #
7             #-##############################################################################
8              
9             #
10             # module definition
11             #
12              
13             package Authen::Credential::none;
14 1     1   8 use strict;
  1         2  
  1         32  
15 1     1   5 use warnings;
  1         2  
  1         100  
16             our $VERSION = "1.2";
17             our $REVISION = sprintf("%d.%02d", q$Revision: 1.8 $ =~ /(\d+)\.(\d+)/);
18              
19             #
20             # inheritance
21             #
22              
23             our @ISA = qw(Authen::Credential);
24              
25             #
26             # used modules
27             #
28              
29 1     1   8 use Authen::Credential qw();
  1         1  
  1         58  
30              
31             #
32             # Params::Validate specification
33             #
34              
35             $Authen::Credential::ValidationSpec{none} = {};
36              
37             1;
38              
39             __DATA__