File Coverage

lib/Oryx/DBI/Method.pm
Criterion Covered Total %
statement 3 12 25.0
branch n/a
condition n/a
subroutine 1 8 12.5
pod 5 7 71.4
total 9 27 33.3


line stmt bran cond sub pod time code
1             package Oryx::DBI::Method;
2              
3 15     15   79 use base qw(Oryx::MetaClass);
  15         29  
  15         2879  
4              
5             sub new {
6 0     0 0   my ($class, $meta, $owner) = @_;
7 0           my $self = bless {
8             owner => $owner,
9             meta => $meta,
10             }, $class;
11 0           return $self;
12             }
13             sub name {
14 0     0 0   return $_[0]->{meta}->{name}
15             }
16 0     0 1   sub construct {
17              
18             }
19              
20 0     0 1   sub create {
21              
22             }
23              
24 0     0 1   sub retrieve {
25              
26             }
27              
28 0     0 1   sub search {
29              
30             }
31              
32 0     0 1   sub update {
33              
34             }
35              
36             1;