File Coverage

blib/lib/SQL/Translator/Producer/XML.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package SQL::Translator::Producer::XML;
2              
3             =pod
4              
5             =head1 NAME
6              
7             SQL::Translator::Producer::XML - Alias to XML::SQLFairy producer
8              
9             =head1 DESCRIPTION
10              
11             Previous versions of SQL::Translator included an XML producer, but the
12             namespace has since been further subdivided. Therefore, this module is
13             now just an alias to the XML::SQLFairy producer.
14              
15             =head1 SEE ALSO
16              
17             SQL::Translator::Producer::XML::SQLFairy.
18              
19             =head1 AUTHOR
20              
21             Ken Youens-Clark Ekclark@cpan.orgE.
22              
23             =cut
24              
25 2     2   13 use strict;
  2         5  
  2         57  
26 2     2   10 use warnings;
  2         3  
  2         121  
27             our $DEBUG;
28             our $VERSION = '1.63';
29             $DEBUG = 1 unless defined $DEBUG;
30              
31 2     2   932 use SQL::Translator::Producer::XML::SQLFairy;
  2         5  
  2         229  
32              
33             *produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
34              
35             1;