File Coverage

blib/lib/URI/ws.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod 1 1 100.0
total 15 15 100.0


line stmt bran cond sub pod time code
1             package URI::ws;
2              
3 2     2   2216 use strict;
  2         5  
  2         71  
4 2     2   11 use warnings;
  2         5  
  2         97  
5              
6             # ABSTRACT: WebSocket support for URI package
7             our $VERSION = '0.03'; # VERSION
8              
9              
10 2     2   11 use base qw( URI::_server );
  2         11  
  2         1883  
11              
12              
13 1     1 1 1142 sub default_port { 80 }
14              
15             1;
16              
17             __END__