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   1588 use strict;
  3         5  
  3         90  
2 3     3   11 use warnings;
  3         4  
  3         111  
3             package Net::MQTT::Message::PingReq;
4             $Net::MQTT::Message::PingReq::VERSION = '1.143260';
5             # ABSTRACT: Perl module to represent an MQTT PingReq message
6              
7              
8 3     3   11 use base 'Net::MQTT::Message';
  3         3  
  3         218  
9              
10             sub message_type {
11 11     11 1 22 12
12             }
13              
14             1;
15              
16             __END__