File Coverage

blib/lib/P4/OO/WorkspaceSet.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod n/a
total 8 8 100.0


line stmt bran cond sub pod time code
1             ######################################################################
2             # Copyright (c)2010-2011, David L. Armstrong.
3             #
4             # P4::OO::WorkspaceSet.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::WorkspaceSet;
24             our $VERSION = '0.00_02';
25 1     1   28454 use base 'P4::OO::ClientSet';
  1         3  
  1         549  
26 1     1   5 use strict;
  1         2  
  1         41  
27              
28              
29             ######################################################################
30             #
31             # P4::OO::WorkspaceSet is just a stub, P4::OO::ClientSet does all the work
32             #
33             ######################################################################
34              
35             ######################################################################
36             # Standard authorship and copyright for documentation
37             #
38              
39             =head1 AUTHOR
40              
41             David L. Armstrong
42              
43             =head1 COPYRIGHT AND LICENSE
44              
45             P4::OO::WorkspaceSet is Copyright (c)2010-2011, David L. Armstrong.
46              
47             This module is free software; you can redistribute it and/or
48             modify it under the same terms as Perl itself, either Perl
49             version 5.8.8 or, at your option, any later version of Perl 5
50             you may have available.
51              
52             =head1 SUPPORT AND WARRANTY
53              
54             This program is distributed in the hope that it will be
55             useful, but it is provided "as is" and without any expressed
56             or implied warranties.
57              
58             =cut
59              
60             1;