File Coverage

blib/lib/Test/PlugAuth/Plugin.pm
Criterion Covered Total %
statement 10 10 100.0
branch 1 2 50.0
condition n/a
subroutine 3 3 100.0
pod n/a
total 14 15 93.3


line stmt bran cond sub pod time code
1             package Test::PlugAuth::Plugin;
2              
3 7     7   40 use strict;
  7         14  
  7         258  
4 7     7   43 use warnings;
  7         10  
  7         681  
5              
6             # ABSTRACT: Private package for Test::PlugAUth::Plugin::* modules
7             our $VERSION = '0.35'; # VERSION
8              
9              
10             BEGIN {
11 7     7   72 $ENV{LOG_LEVEL} = "ERROR";
12              
13 7 50       47 unless($INC{'File/HomeDir/Test.pm'})
14             {
15 7         4192 require File::HomeDir::Test;
16 7         116058 File::HomeDir::Test->import;
17             }
18             }
19              
20             1;
21              
22             __END__
23              
24             =pod
25              
26             =encoding UTF-8
27              
28             =head1 NAME
29              
30             Test::PlugAuth::Plugin - Private package for Test::PlugAUth::Plugin::* modules
31              
32             =head1 VERSION
33              
34             version 0.35
35              
36             =head1 SEE ALSO
37              
38             L<PlugAuth>,
39             L<Test::PlugAuth::Plugin::Auth>,
40             L<Test::PlugAuth::Plugin::Authz>,
41             L<Test::PlugAuth::Plugin::Refresh>
42              
43             =head1 AUTHOR
44              
45             Graham Ollis <gollis@sesda3.com>
46              
47             =head1 COPYRIGHT AND LICENSE
48              
49             This software is copyright (c) 2012 by NASA GSFC.
50              
51             This is free software; you can redistribute it and/or modify it under
52             the same terms as the Perl 5 programming language system itself.
53              
54             =cut