File Coverage

blib/lib/SQL/Translator/Generator/DDL/MySQL.pm
Criterion Covered Total %
statement 4 4 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 6 7 85.7


line stmt bran cond sub pod time code
1             package SQL::Translator::Generator::DDL::MySQL;
2              
3             =head1 NAME
4              
5             SQL::Translator::Generator::DDL::MySQL - A Moo based MySQL DDL generation
6             engine.
7              
8             =head1 DESCRIPTION
9              
10             I
11              
12             =cut
13              
14 11     11   627 use Moo;
  11         11492  
  11         110  
15              
16             has quote_chars => ( is => 'ro', default => sub { +[qw(` `)] } );
17              
18             with 'SQL::Translator::Generator::Role::Quote';
19              
20 684     684 0 1997 sub name_sep { q(.) }
21              
22             1;