File Coverage

blib/lib/Gtk2/Ex/DbLinker/DbTools.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod 0 1 0.0
total 12 13 92.3


line stmt bran cond sub pod time code
1              
2              
3             =head1 NAME
4              
5             Gtk2::Ex::DbLinker::DbTools - Databases access part of DbLinker
6              
7             =cut
8              
9             package Gtk2::Ex::DbLinker::DbTools;
10 1     1   31873 use strict;
  1         2  
  1         48  
11 1     1   7 use warnings;
  1         2  
  1         125  
12              
13             =head1 VERSION
14              
15             version 0.110 but see version at the end of MYMETA.yml to check that I'm correct here...
16              
17             =cut
18              
19             our $VERSION = '0.110';
20             $VERSION = eval $VERSION;
21              
22             sub new {
23 1     1 0 8 my ( $class, $arg ) = @_;
24 1         2 my $self = {};
25 1         3 return bless $self, $class;
26             }
27              
28             1;
29              
30             __END__