File Coverage

blib/lib/Protocol/HTTP2.pm
Criterion Covered Total %
statement 10 10 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 15 17 88.2


line stmt bran cond sub pod time code
1             package Protocol::HTTP2;
2 13     13   67258 use 5.008005;
  13         30  
3 13     13   43 use strict;
  13         11  
  13         201  
4 13     13   36 use warnings;
  13         25  
  13         740  
5              
6             our $VERSION = "1.08";
7              
8             sub ident_plain {
9 4     4 0 36 'h2c';
10             }
11              
12             sub ident_tls {
13 1     1 0 9504 'h2';
14             }
15              
16             1;
17             __END__