File Coverage

blib/lib/Net/Google/Calendar/Server/Auth.pm
Criterion Covered Total %
statement 3 9 33.3
branch n/a
condition n/a
subroutine 1 5 20.0
pod 0 4 0.0
total 4 18 22.2


line stmt bran cond sub pod time code
1             package Net::Google::Calendar::Server::Auth;
2              
3 1     1   6 use strict;
  1         2  
  1         132  
4              
5             =head1 NAME
6              
7             Net::Google::Calendar::Server::Auth - the base class for authentication modules.
8              
9             =cut
10              
11             sub new {
12 0     0 0   my $class = shift;
13 0           my %opts = @_;
14              
15 0           return bless \%opts, $class;
16             }
17              
18             sub validate {
19 0     0 0   return undef;
20             }
21              
22             sub auth {
23 0     0 0   return 0;
24             }
25              
26             sub magic_cookie_auth {
27 0     0 0   return 0;
28             }
29              
30             1;