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   343 use strict;
  1         1  
  1         22  
4 1     1   4 use warnings;
  1         2  
  1         20  
5              
6 1     1   4 use parent qw( Net::WAMP::Base::Message );
  1         1  
  1         3  
7              
8 1     1   46 use constant PARTS => qw( Session Auxiliary );
  1         2  
  1         42  
9              
10 1     1   5 use constant HAS_AUXILIARY => 1;
  1         1  
  1         56  
11              
12 1     1   5 use constant NUMERIC => qw( Session );
  1         1  
  1         39  
13              
14             1;