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   1244 use strict;
  2         4  
  2         90  
4 2     2   13 use warnings;
  2         4  
  2         79  
5              
6 2     2   14 use Net::WebSocket::Constants ();
  2         3  
  2         44  
7              
8 2     2   23 use parent qw( Net::WebSocket::X::Base );
  2         5  
  2         12  
9              
10             sub _new {
11 2     2   449 my ($class, $method) = @_;
12              
13 2         6 my $str = "Received invalid HTTP request method: $method";
14              
15 2         6 $str .= " - must be " . Net::WebSocket::Constants::REQUIRED_HTTP_METHOD();
16              
17 2         13 return $class->SUPER::_new(
18             $str,
19             method => $method,
20             );
21             }
22              
23             1;