File Coverage

blib/lib/Pixie/LockStrat/Null.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             ##
2             # NAME
3             # Pixie::LockStrat::Null - basic locking strategy for Pixie
4             #
5             # SYNOPSIS
6             # use Pixie::LockStrat::Null;
7             # # see Pixie::LockStrat;
8             #
9             # DESCRIPTION
10             # Exact same as Pixie::LockStrat.
11             #
12             ##
13             package Pixie::LockStrat::Null;
14              
15 19     19   25338 use strict;
  19         36  
  19         1025  
16              
17 19     19   106 use base qw( Pixie::LockStrat );
  19         42  
  19         10551  
18              
19             our $VERSION = '2.08_02';
20              
21             1;