File Coverage

blib/lib/Git/Raw/Odb/Backend.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Git::Raw::Odb::Backend;
2             $Git::Raw::Odb::Backend::VERSION = '0.90';
3 36     36   225 use strict;
  36         67  
  36         946  
4 36     36   161 use warnings;
  36         65  
  36         757  
5              
6 36     36   158 use Git::Raw;
  36         68  
  36         804  
7 36     36   14501 use Git::Raw::Odb::Backend::Loose;
  36         84  
  36         961  
8 36     36   14310 use Git::Raw::Odb::Backend::OnePack;
  36         83  
  36         930  
9 36     36   14018 use Git::Raw::Odb::Backend::Pack;
  36         78  
  36         1163  
10              
11             =head1 NAME
12              
13             Git::Raw::Odb::Backend - Git object database backend class
14              
15             =head1 VERSION
16              
17             version 0.90
18              
19             =head1 DESCRIPTION
20              
21             A L represents a git object database backend.
22              
23             B: The API of this module is unstable and may change without warning
24             (any change will be appropriately documented in the changelog).
25              
26             =head1 AUTHOR
27              
28             Jacques Germishuys
29              
30             =head1 LICENSE AND COPYRIGHT
31              
32             Copyright 2016 Jacques Germishuys.
33              
34             This program is free software; you can redistribute it and/or modify it
35             under the terms of either: the GNU General Public License as published
36             by the Free Software Foundation; or the Artistic License.
37              
38             See http://dev.perl.org/licenses/ for more information.
39              
40             =cut
41              
42             1; # End of Git::Raw::Odb::Backend