File Coverage

blib/lib/Script/Toolbox.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Script::Toolbox;
2              
3 10     10   139110 use 5.006;
  10         27  
4 10     10   33 use strict;
  10         13  
  10         180  
5 10     10   34 use warnings;
  10         13  
  10         279  
6 10     10   4398 use Script::Toolbox::Util qw(:all);
  10         51  
  10         2650  
7              
8             require Exporter;
9              
10             our @ISA = qw(Script::Toolbox::Util Script::Toolbox::Util::Opt Exporter);
11              
12             # Items to export into callers namespace by default. Note: do not export
13             # names by default without a very good reason. Use EXPORT_OK instead.
14             # Do not simply export all your public functions/methods/constants.
15              
16             # This allows declaration use Script::Toolbox ':all';
17             # If you do not need this, moving things directly into @EXPORT or @EXPORT_OK
18             # will save memory.
19             our %EXPORT_TAGS = ( 'all' => [ qw(Open Log Exit Table Usage Dir File FileC
20             System Now Menue KeyMap Stat TmpFile
21             DataMenue
22             )]);
23              
24             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
25              
26             our @EXPORT = qw(
27            
28             );
29              
30             our $VERSION = '0.54';
31              
32              
33             # Preloaded methods go here.
34              
35             1;
36             __END__