File Coverage

lib/XCAP/Client/Element.pm
Criterion Covered Total %
statement 1 3 33.3
branch n/a
condition n/a
subroutine 1 1 100.0
pod n/a
total 2 4 50.0


line stmt bran cond sub pod time code
1              
2             package XCAP::Client::Element;
3              
4 1     1   8455 use Moose;
  0            
  0            
5              
6             has connection => (
7             is => 'rw',
8             isa => 'Object',
9             required => 1,
10             );
11              
12             has content => (
13             is => 'rw',
14             isa => 'Str',
15             );
16              
17             sub fetch { $_[0]->connection->fetch; }
18              
19             sub delete { $_[0]->connection->delete; }
20              
21             sub create {
22             my $self = shift;
23             $self->connection->fetch($self->content);
24             }
25              
26             sub replace {
27             my $self = shift;
28             $self->connection->fetch($self->content);
29             }
30              
31              
32             1;
33