File Coverage

/root/.cpan/build/URI-XS-2.1.2-0/clib/src/panda/uri/http.h
Criterion Covered Total %
statement 6 6 100.0
branch 2 4 50.0
condition n/a
subroutine n/a
pod n/a
total 8 10 80.0


line stmt bran cond sub pod time code
1             #pragma once
2             #include
3              
4             namespace panda { namespace uri {
5              
6 50 50         struct URI::https : Strict {
7             using Strict = Strict;
8 24           using Strict::Strict;
9              
10 4           static string default_scheme () { return "https"; }
11             };
12              
13 114 50         struct URI::http : Strict {
14             using Strict = Strict;
15 38           using Strict::Strict;
16              
17 4           static string default_scheme () { return "http"; }
18             };
19              
20             }}