File Coverage

blib/lib/Net/Google/Calendar/Server/Backend.pm
Criterion Covered Total %
statement 3 6 50.0
branch n/a
condition n/a
subroutine 1 2 50.0
pod n/a
total 4 8 50.0


line stmt bran cond sub pod time code
1             package Net::Google::Calendar::Backend;
2              
3 1     1   5 use strict;
  1         2  
  1         75  
4              
5             =head1 NAME
6              
7             Net::Google::Calendar::Backend - store and retrieve entries. Should be subclassed.
8              
9             =cut
10              
11             sub new {
12 0     0     my $class = shift;
13 0           my %opts = @_;
14              
15 0           return bless \%opts, $class;
16             }
17              
18             1;