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   529985 use 5.006;
  10         73  
4 10     10   65 use strict;
  10         31  
  10         205  
5 10     10   40 use warnings;
  10         13  
  10         270  
6 10     10   4501 use Script::Toolbox::Util qw(:all);
  10         23  
  10         2356  
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 Menu DataMenu
22             CheckBox RadioButton
23             )]);
24              
25             our @EXPORT_OK = ( @{ $EXPORT_TAGS{'all'} } );
26              
27             our @EXPORT = qw(
28            
29             );
30              
31             our $VERSION = '0.58';
32              
33              
34             # Preloaded methods go here.
35              
36             1;
37             __END__