File Coverage

blib/lib/PPM/XML/RepositorySummary.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             #
2             # PPM::XML::PPMConfig
3             #
4             # Definition of the PPMConfig file format; configuration options for the Perl
5             # Package Manager.
6             #
7             ###############################################################################
8              
9             ###############################################################################
10             # Import everything from PPM::XML::PPD into our own namespace.
11             ###############################################################################
12             package PPM::XML::RepositorySummary;
13 1     1   1288 use vars qw( $VERSION );
  1         1  
  1         43  
14             $VERSION = '0.01_01';
15              
16 1     1   4 use PPM::XML::PPD ':elements';
  1         1  
  1         298  
17              
18             ###############################################################################
19             # RepositorySummary Element: Characters
20             ###############################################################################
21             package PPM::XML::RepositorySummary::Characters;
22             @ISA = qw( PPM::XML::Element );
23              
24             ###############################################################################
25             # RepositorySummary Element: REPOSITORYSUMMARY
26             ###############################################################################
27             package PPM::XML::RepositorySummary::REPOSITORYSUMMARY;
28             @ISA = qw( PPM::XML::ValidatingElement );
29             @okids = qw( SOFTPKG );
30              
31             __END__