File Coverage

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


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