File Coverage

blib/lib/App/Env/Null.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 0 1 0.0
total 13 14 92.8


line stmt bran cond sub pod time code
1             package App::Env::Null;
2              
3             # ABSTRACT: return a snapshot of the current environment
4              
5 5     5   200982 use v5.10;
  5         18  
6 5     5   29 use strict;
  5         11  
  5         129  
7 5     5   21 use warnings;
  5         9  
  5         794  
8              
9             our $VERSION = '1.05';
10              
11              
12              
13              
14              
15              
16 5     5 0 16 sub envs { return \%ENV }
17              
18             1;
19              
20             #
21             # This file is part of App-Env
22             #
23             # This software is Copyright (c) 2018 by Smithsonian Astrophysical Observatory.
24             #
25             # This is free software, licensed under:
26             #
27             # The GNU General Public License, Version 3, June 2007
28             #
29              
30             __END__