• Home
  • Features
  • Pricing
  • Docs
  • Announcements
  • Sign In

KSP-CKAN / CKAN / 17865370817

19 Sep 2025 05:26PM UTC coverage: 74.379% (+0.2%) from 74.179%
17865370817

Pull #4441

github

web-flow
Merge 8c1b838f2 into e49348427
Pull Request #4441: Don't clone with symlinks on Linux

5136 of 7262 branches covered (70.72%)

Branch coverage included in aggregate %.

5 of 8 new or added lines in 2 files covered. (62.5%)

11 existing lines in 4 files now uncovered.

11060 of 14513 relevant lines covered (76.21%)

1.56 hits per line

Source File
Press 'n' to go to next uncovered line, 'b' for previous

0.0
/GUI/Model/ExportOption.cs
1
using CKAN.Types;
2

3
namespace CKAN.GUI
4
{
5
    internal sealed class ExportOption
6
    {
7
        private readonly string _string;
8

9
        public ExportFileType ExportFileType { get; private set; }
10
        public string FriendlyName { get; private set; }
11
        public string Extension { get; private set; }
12

UNCOV
13
        public ExportOption(ExportFileType exportFileType, string friendlyName, string extension)
×
UNCOV
14
        {
×
UNCOV
15
            ExportFileType = exportFileType;
×
UNCOV
16
            FriendlyName = friendlyName;
×
UNCOV
17
            Extension = extension;
×
18

UNCOV
19
            _string = $"{FriendlyName}|*.{Extension}";
×
UNCOV
20
        }
×
21

22
        public override string ToString()
23
            => _string;
×
24
    }
25
}
STATUS · Troubleshooting · Open an Issue · Sales · Support · CAREERS · ENTERPRISE · START FREE · SCHEDULE DEMO
ANNOUNCEMENTS · TWITTER · TOS & SLA · Supported CI Services · What's a CI service? · Automated Testing

© 2026 Coveralls, Inc