File Coverage

blib/lib/WebService/NFSN/Member.pm
Criterion Covered Total %
statement 13 13 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 18 18 100.0


line stmt bran cond sub pod time code
1             #---------------------------------------------------------------------
2             package WebService::NFSN::Member;
3             #
4             # Copyright 2010 Christopher J. Madsen
5             #
6             # Author: Christopher J. Madsen
7             # Created: 3 Apr 2007
8             #
9             # This program is free software; you can redistribute it and/or modify
10             # it under the same terms as Perl itself.
11             #
12             # This program is distributed in the hope that it will be useful,
13             # but WITHOUT ANY WARRANTY; without even the implied warranty of
14             # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See either the
15             # GNU General Public License or the Artistic License for more details.
16             #
17             # ABSTRACT: Access NFSN member API
18             #---------------------------------------------------------------------
19              
20 1     1   1125 use 5.006;
  1         3  
  1         41  
21 1     1   5 use strict;
  1         2  
  1         28  
22 1     1   6 use warnings;
  1         2  
  1         24  
23              
24 1     1   4 use parent 'WebService::NFSN::Object';
  1         2  
  1         5  
25              
26             #=====================================================================
27             # Package Global Variables:
28              
29             our $VERSION = '1.03'; # VERSION
30              
31             #=====================================================================
32             BEGIN {
33 1     1   90 __PACKAGE__->_define(
34             type => 'member',
35             ro => [qw(accounts:JSON sites:JSON)],
36             );
37             } # end BEGIN
38              
39             #=====================================================================
40             # Package Return Value:
41              
42             1;
43              
44             __END__