File Coverage

blib/lib/eBay/API.pm
Criterion Covered Total %
statement 12 12 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 16 16 100.0


line stmt bran cond sub pod time code
1             ################################################################################
2             # Location: ...................... /eBay
3             # File: .......................... API.pm
4             #
5             # Description
6             #
7             # This is actually a place holder module used strictly for controlling the name-
8             # space of this library, as well as to provide general usage documentation.
9             ################################################################################
10            
11            
12            
13            
14            
15             # Package Declaration
16             # ------------------------------------------------------------------------------
17             package eBay::API;
18            
19            
20            
21            
22            
23             # Required Includes
24             # ------------------------------------------------------------------------------
25 2     2   82047 use 5.008001; # Need to use this version of Perl, or later
  2         15  
  2         77  
26 2     2   11 use strict; # Needed to control variable hell
  2         4  
  2         70  
27 2     2   9 use warnings; # Needed to catch perl compilation warnings
  2         9  
  2         67  
28 2     2   10 use Exporter; # Used to provide symbol exportation
  2         4  
  2         147  
29            
30            
31            
32            
33            
34             # Variable Declarations
35             # ------------------------------------------------------------------------------
36             # Constants
37             # none
38            
39             # Globals
40             our $VERSION = '0.25';
41            
42             # Lexicals
43             # none
44            
45            
46            
47            
48            
49             # Subroutine Prototypes
50             # ------------------------------------------------------------------------------
51             # none
52            
53            
54            
55            
56            
57             # Main Script
58             # ------------------------------------------------------------------------------
59             # none
60            
61            
62            
63            
64            
65             # Return TRUE to Perl
66             1;
67            
68             __END__