File Coverage

blib/lib/Net/WAMP/Message/WELCOME.pm
Criterion Covered Total %
statement 18 18 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 24 24 100.0


line stmt bran cond sub pod time code
1             package Net::WAMP::Message::WELCOME;
2              
3 1     1   352 use strict;
  1         1  
  1         23  
4 1     1   3 use warnings;
  1         1  
  1         22  
5              
6 1     1   2 use parent qw( Net::WAMP::Base::Message );
  1         1  
  1         3  
7              
8 1     1   41 use constant PARTS => qw( Session Auxiliary );
  1         1  
  1         41  
9              
10 1     1   3 use constant HAS_AUXILIARY => 1;
  1         1  
  1         36  
11              
12 1     1   3 use constant NUMERIC => qw( Session );
  1         1  
  1         31  
13              
14             1;