File Coverage

blib/lib/Net/WAMP/Message/HELLO.pm
Criterion Covered Total %
statement 15 15 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 20 20 100.0


line stmt bran cond sub pod time code
1             package Net::WAMP::Message::HELLO;
2              
3 1     1   446 use strict;
  1         1  
  1         28  
4 1     1   4 use warnings;
  1         1  
  1         41  
5              
6 1     1   5 use parent qw( Net::WAMP::Base::Message );
  1         1  
  1         8  
7              
8 1     1   72 use constant PARTS => qw( Realm Auxiliary );
  1         2  
  1         65  
9              
10 1     1   3 use constant HAS_AUXILIARY => 1;
  1         2  
  1         40  
11              
12             1;