File Coverage

blib/lib/Net/WebSocket/X/BadHTTPMethod.pm
Criterion Covered Total %
statement 16 16 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod n/a
total 21 21 100.0


line stmt bran cond sub pod time code
1             package Net::WebSocket::X::BadHTTPMethod;
2              
3 2     2   986 use strict;
  2         5  
  2         115  
4 2     2   12 use warnings;
  2         4  
  2         53  
5              
6 2     2   11 use Net::WebSocket::Constants ();
  2         4  
  2         43  
7              
8 2     2   9 use parent qw( Net::WebSocket::X::Base );
  2         4  
  2         10  
9              
10             sub _new {
11 2     2   512 my ($class, $method) = @_;
12              
13 2         6 my $str = "Received invalid HTTP request method: $method";
14              
15 2         5 $str .= " - must be " . Net::WebSocket::Constants::REQUIRED_HTTP_METHOD();
16              
17 2         14 return $class->SUPER::_new(
18             $str,
19             method => $method,
20             );
21             }
22              
23             1;