File Coverage

blib/lib/MARC/Detrans/Config.pm
Criterion Covered Total %
statement 145 147 98.6
branch 50 56 89.2
condition 13 24 54.1
subroutine 28 28 100.0
pod 5 5 100.0
total 241 260 92.6


line stmt bran cond sub pod time code
1             package MARC::Detrans::Config;
2              
3 7     7   28406 use strict;
  7         15  
  7         219  
4 7     7   35 use warnings;
  7         13  
  7         307  
5 7     7   56 use base qw( Class::Accessor );
  7         11  
  7         7980  
6 7     7   26332 use XML::SAX::ParserFactory;
  7         65582  
  7         250  
7 7     7   63 use Carp qw( croak );
  7         150  
  7         4083  
8              
9             =head1 NAME
10              
11             MARC::Detrans::Config - Stores de-transliteration configuration data
12              
13             =head1 SYNOPSIS
14              
15             use MARC::Detrans::Config;
16             my $config = MARC::Detrans::Config->new( 'file.xml' );
17              
18             =head1 DESCRIPTION
19              
20             MARC::Detrans::Config will read detransliteration rules from an XML file which
21             you can then use to create a MARC::Detrans::Converter object to actually convert
22             MARC records.
23              
24            
25            
26              
27            
28            
29              
30            
31