File Coverage

blib/lib/Protocol/XMPP/Element/HTML.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::HTML;
2              
3 1     1   238531 use strict;
  1         1  
  1         34  
4 1     1   3 use warnings;
  1         2  
  1         58  
5 1     1   3 use parent qw(Protocol::XMPP::ElementBase);
  1         5  
  1         8  
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("Ignoring HTML content");
28             }
29              
30             1;
31              
32             __END__