File Coverage

blib/lib/HTML/WebDAO/Store/Abstract.pm
Criterion Covered Total %
statement 12 19 63.1
branch n/a
condition n/a
subroutine 5 10 50.0
pod 0 4 0.0
total 17 33 51.5


line stmt bran cond sub pod time code
1             #$Id: Abstract.pm 97 2007-06-17 13:18:56Z zag $
2              
3             package HTML::WebDAO::Store::Abstract;
4 4     4   5874 use HTML::WebDAO::Base;
  4         11  
  4         225  
5 4     4   21 use Data::Dumper;
  4         7  
  4         149  
6 4     4   20 use strict;
  4         15  
  4         848  
7             @HTML::WebDAO::Store::Abstract::ISA = ('HTML::WebDAO::Base');
8             sub _init {
9 3     3   9 my $self = shift;
10 3         18 return $self->init(@_);
11             }
12             sub init {
13 3     3 0 33 return 1
14             }
15 0     0 0   sub load { {} }
16 0     0 0   sub store { {} }
17             sub _load_attributes {
18 0     0     my $self = shift;
19             return {}
20 0           }
21             sub _store_attributes {
22 0     0     my $self = shift;
23             return {}
24 0           }
25 0     0 0   sub flush { #$_[0]->_log1("flush")
26             }
27              
28             1;