File Coverage

blib/lib/Net/MQTT/Message/PingReq.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1 3     3   1958 use strict;
  3         7  
  3         84  
2 3     3   11 use warnings;
  3         4  
  3         127  
3             package Net::MQTT::Message::PingReq;
4             $Net::MQTT::Message::PingReq::VERSION = '1.163170';
5             # ABSTRACT: Perl module to represent an MQTT PingReq message
6              
7              
8 3     3   10 use base 'Net::MQTT::Message';
  3         4  
  3         224  
9              
10             sub message_type {
11 11     11 1 28 12
12             }
13              
14             1;
15              
16             __END__