File Coverage

blib/lib/WebService/Cmis/Property/String.pm
Criterion Covered Total %
statement 9 9 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 12 12 100.0


line stmt bran cond sub pod time code
1             package WebService::Cmis::Property::String;
2              
3             =head1 NAME
4              
5             WebService::Cmis::Property::String
6              
7             Representation of a propertyString of a cmis object
8              
9             =head1 SYNOPSIS
10              
11             =head1 DESCRIPTION
12              
13             =cut
14              
15 1     1   3071 use strict;
  1         3  
  1         36  
16 1     1   5 use warnings;
  1         2  
  1         25  
17 1     1   5 use WebService::Cmis::Property ();
  1         3  
  1         44  
18             our @ISA = qw(WebService::Cmis::Property);
19              
20             =head1 COPYRIGHT AND LICENSE
21              
22             Copyright 2012-2013 Michael Daum
23              
24             This module is free software; you can redistribute it and/or modify it under
25             the same terms as Perl itself. See F.
26              
27             =cut
28              
29             1;