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 12     12   85979 use 5.008005;
  12         40  
3 12     12   65 use strict;
  12         20  
  12         291  
4 12     12   62 use warnings;
  12         28  
  12         856  
5              
6             our $VERSION = "1.05";
7              
8             sub ident_plain {
9 4     4 0 75 'h2c';
10             }
11              
12             sub ident_tls {
13 1     1 0 86671 'h2';
14             }
15              
16             1;
17             __END__