File Coverage

blib/lib/Protocol/XMPP/Element/Active.pm
Criterion Covered Total %
statement 9 11 81.8
branch n/a
condition n/a
subroutine 3 4 75.0
pod 1 1 100.0
total 13 16 81.2


line stmt bran cond sub pod time code
1             package Protocol::XMPP::Element::Active;
2              
3 1     1   217391 use strict;
  1         2  
  1         50  
4 1     1   6 use warnings;
  1         2  
  1         76  
5 1     1   7 use parent qw(Protocol::XMPP::ElementBase);
  1         2  
  1         29  
6              
7             our $VERSION = '0.007'; ## VERSION
8              
9             =head1 NAME
10              
11             Protocol::XMPP::Feature - register ability to deal with a specific feature
12              
13             =head1 SYNOPSIS
14              
15             =head1 DESCRIPTION
16              
17             =head1 METHODS
18              
19             =cut
20              
21             =head2 end_element
22              
23             =cut
24              
25             sub end_element {
26 0     0 1   my $self = shift;
27 0           $self->debug("Active element, TODO");
28             }
29              
30             1;
31              
32             __END__