File Coverage

blib/lib/Net/WebSocket/X/ReceivedBadControlFrame.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package Net::WebSocket::X::ReceivedBadControlFrame;
2              
3 2     2   1102 use strict;
  2         5  
  2         58  
4 2     2   11 use warnings;
  2         4  
  2         56  
5              
6 2     2   10 use parent qw( Net::WebSocket::X::Base );
  2         4  
  2         11  
7              
8             sub _new {
9 2     2   448 my ($class, $txt, $frame) = @_;
10              
11 2         15 return $class->SUPER::_new( $txt, frame => $frame );
12             }
13              
14             1;