File Coverage

blib/lib/Protocol/XMPP/Roster.pm
Criterion Covered Total %
statement 6 8 75.0
branch n/a
condition n/a
subroutine 2 3 66.6
pod 0 1 0.0
total 8 12 66.6


line stmt bran cond sub pod time code
1             package Protocol::XMPP::Roster;
2              
3 2     2   156928 use strict;
  2         6  
  2         87  
4 2     2   13 use warnings;
  2         4  
  2         291  
5              
6             our $VERSION = '0.007'; ## VERSION
7              
8             =head1 NAME
9              
10             Protocol::XMPP::Roster - handle XMPP protocol stream
11              
12             =cut
13              
14 0     0 0   sub new { my $class = shift; bless { @_ }, $class; }
  0            
15              
16             1;
17              
18             __END__