File Coverage

blib/lib/GBPVR/CDBI/PlaybackPosition.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package GBPVR::CDBI::PlaybackPosition;
2              
3 1     1   2602 use warnings;
  1         3  
  1         37  
4 1     1   5 use strict;
  1         3  
  1         53  
5              
6             our $VERSION = '0.02';
7              
8 1     1   7 use base 'GBPVR::CDBI';
  1         3  
  1         93  
9              
10             __PACKAGE__->table('playback_position');
11             __PACKAGE__->columns(Primary => qw/oid/ );
12             __PACKAGE__->columns(All => qw/ oid filename last_position / );
13              
14             1;
15              
16             __END__