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 3     3   35782 use strict;
  3         8  
  3         103  
26 3     3   15 use warnings;
  3         7  
  3         166  
27             our $DEBUG;
28             our $VERSION = '1.6_3';
29             $DEBUG = 1 unless defined $DEBUG;
30              
31 3     3   1231 use SQL::Translator::Producer::XML::SQLFairy;
  3         11  
  3         202  
32              
33             *produce = \&SQL::Translator::Producer::XML::SQLFairy::produce;
34              
35             1;