diff options
Diffstat (limited to 'crates')
-rw-r--r-- | crates/yt/src/cli.rs | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/crates/yt/src/cli.rs b/crates/yt/src/cli.rs index 952cd53..41fadf4 100644 --- a/crates/yt/src/cli.rs +++ b/crates/yt/src/cli.rs @@ -447,3 +447,14 @@ pub enum CacheCommand { all: bool, }, } + +#[cfg(test)] +mod test { + use clap::CommandFactory; + + use super::CliArgs; + #[test] + fn verify_cli() { + CliArgs::command().debug_assert(); + } +} |