File Coverage

blib/lib/WebService/Cmis/Policy.pm
Criterion Covered Total %
statement 7 9 77.7
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 10 12 83.3


line stmt bran cond sub pod time code
1             package WebService::Cmis::Policy;
2              
3             =head1 NAME
4              
5             WebService::Cmis::Policy - Representation of a cmis policy
6              
7             =head1 DESCRIPTION
8              
9             TODO: this isn't implemented yet
10              
11             =cut
12              
13 1     1   3180 use strict;
  1         3  
  1         37  
14 1     1   5 use warnings;
  1         3  
  1         30  
15 1     1   53 use WebService::Cmis::Object ();
  0            
  0            
16             our @ISA = ('WebService::Cmis::Object');
17              
18             =head1 METHODS
19              
20             =over 4
21              
22             =back
23              
24             =head1 COPYRIGHT AND LICENSE
25              
26             Copyright 2012-2013 Michael Daum
27              
28             This module is free software; you can redistribute it and/or modify it under
29             the same terms as Perl itself. See F.
30              
31             =cut
32              
33             1;