File Coverage

blib/lib/XML/Validator/Schema/AttributeLibrary.pm
Criterion Covered Total %
statement 12 15 80.0
branch n/a
condition n/a
subroutine 4 5 80.0
pod 0 1 0.0
total 16 21 76.1


line stmt bran cond sub pod time code
1             package XML::Validator::Schema::AttributeLibrary;
2 5     5   29 use strict;
  5         8  
  5         146  
3 5     5   25 use warnings;
  5         10  
  5         129  
4              
5 5     5   27 use XML::Validator::Schema::Util qw(XSD _err);
  5         8  
  5         245  
6 5     5   24 use base 'XML::Validator::Schema::Library';
  5         8  
  5         550  
7              
8             =head1 NAME
9              
10             XML::Validator::Schema::AttributeLibrary
11              
12             =head1 DESCRIPTION
13              
14             Internal module used to implement a library of attributes.
15              
16             =cut
17              
18             sub new {
19 0     0 0   my $pkg = shift;
20 0           my $self = $pkg->SUPER::new(what => 'attribute', @_);
21              
22 0           return $self;
23             }
24              
25              
26              
27             1;
28