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

vigna / webgraph-rs / 20017908129

08 Dec 2025 05:36AM UTC coverage: 62.065% (+0.4%) from 61.641%
20017908129

push

github

zommiommy
Fix doctests

5435 of 8757 relevant lines covered (62.06%)

46674689.93 hits per line

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

0.0
/cli/src/check/mod.rs
1
/*
2
 * SPDX-FileCopyrightText: 2024 Tommaso Fontana
3
 *
4
 * SPDX-License-Identifier: Apache-2.0 OR LGPL-2.1-or-later
5
 */
6

7
use anyhow::Result;
8
use clap::Subcommand;
9

10
use super::GlobalArgs;
11

12
pub mod ef;
13
pub mod eq;
14

15
#[derive(Subcommand, Debug)]
16
#[command(name = "check")]
17
/// Check coherence of files.
18
pub enum SubCommands {
19
    Ef(ef::CliArgs),
20
    Eq(eq::CliArgs),
21
}
22

23
pub fn main(global_args: GlobalArgs, subcommand: SubCommands) -> Result<()> {
×
24
    match subcommand {
×
25
        SubCommands::Ef(args) => ef::main(global_args, args),
×
26
        SubCommands::Eq(args) => eq::main(global_args, args),
×
27
    }
28
}
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