File Coverage

blib/lib/Protocol/HTTP2.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 2 0.0
total 16 18 88.8


line stmt bran cond sub pod time code
1             package Protocol::HTTP2;
2 11     11   65003 use 5.008005;
  11         28  
  11         389  
3 11     11   54 use strict;
  11         16  
  11         270  
4 11     11   39 use warnings;
  11         23  
  11         672  
5              
6             our $VERSION = "1.04";
7              
8             sub ident_plain {
9 4     4 0 55 'h2c';
10             }
11              
12             sub ident_tls {
13 1     1 0 11822 'h2';
14             }
15              
16             1;
17             __END__