File Coverage

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


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