File Coverage

blib/lib/KiokuDB/Backend/TypeMap/Default/JSON.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 14 14 100.0


line stmt bran cond sub pod time code
1             #!/usr/bin/perl
2              
3             package KiokuDB::Backend::TypeMap::Default::JSON;
4 6     6   4014 use Moose::Role;
  6         13  
  6         47  
5              
6 6     6   27219 use KiokuDB::TypeMap::Default::JSON;
  6         21  
  6         283  
7              
8 6     6   49 use namespace::clean -except => 'meta';
  6         8  
  6         54  
9              
10             with qw(KiokuDB::Backend::TypeMap::Default);
11              
12             sub _build_default_typemap {
13             # FIXME options
14 16     16   543 KiokuDB::TypeMap::Default::JSON->new
15             }
16              
17             __PACKAGE__
18              
19             __END__
20