File Coverage

blib/lib/P4/OO/Group.pm
Criterion Covered Total %
statement 6 7 85.7
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 11 72.7


line stmt bran cond sub pod time code
1             ######################################################################
2             # Copyright (c)2010-2011, David L. Armstrong.
3             #
4             # P4::OO::Group.pm
5             #
6             # See COPYRIGHT AND LICENSE section in pod text below for usage
7             # and distribution rights.
8             #
9             ######################################################################
10              
11             =head1 NAME
12              
13             =head1 SYNOPSIS
14              
15             =head1 DESCRIPTION
16              
17             =cut
18              
19              
20             ######################################################################
21             # Package Initialization
22             #
23             package P4::OO::Group;
24             our $VERSION = '0.00_02';
25 1     1   24750 use base 'P4::OO::_SpecObj';
  1         2  
  1         462  
26 1     1   5 use strict;
  1         1  
  1         44  
27              
28              
29             ######################################################################
30             # Globals
31             #
32             # Subclasses must define SPECOBJ_TYPE
33 0     0 0   sub SPECOBJ_TYPE { return( 'group' ); }
34              
35              
36             ######################################################################
37             # Methods
38             #
39              
40             ######################################################################
41             # Standard authorship and copyright for documentation
42             #
43              
44             =head1 AUTHOR
45              
46             David L. Armstrong
47              
48             =head1 COPYRIGHT AND LICENSE
49              
50             P4::OO::Group is Copyright (c)2010-2011, David L. Armstrong.
51              
52             This module is free software; you can redistribute it and/or
53             modify it under the same terms as Perl itself, either Perl
54             version 5.8.8 or, at your option, any later version of Perl 5
55             you may have available.
56              
57             =head1 SUPPORT AND WARRANTY
58              
59             This program is distributed in the hope that it will be
60             useful, but it is provided "as is" and without any expressed
61             or implied warranties.
62              
63             =cut
64              
65             1;