mirror of
https://github.com/clap-rs/clap
synced 2024-11-10 06:44:16 +00:00
86 lines
1.7 KiB
Rust
86 lines
1.7 KiB
Rust
|
mod common;
|
||
|
|
||
|
#[test]
|
||
|
fn basic() {
|
||
|
let name = "my-app";
|
||
|
let cmd = common::basic_command(name);
|
||
|
common::assert_matches_path(
|
||
|
"tests/snapshots/basic.fig.js",
|
||
|
clap_complete_fig::Fig,
|
||
|
cmd,
|
||
|
name,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn feature_sample() {
|
||
|
let name = "my-app";
|
||
|
let cmd = common::feature_sample_command(name);
|
||
|
common::assert_matches_path(
|
||
|
"tests/snapshots/feature_sample.fig.js",
|
||
|
clap_complete_fig::Fig,
|
||
|
cmd,
|
||
|
name,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn special_commands() {
|
||
|
let name = "my-app";
|
||
|
let cmd = common::special_commands_command(name);
|
||
|
common::assert_matches_path(
|
||
|
"tests/snapshots/special_commands.fig.js",
|
||
|
clap_complete_fig::Fig,
|
||
|
cmd,
|
||
|
name,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn quoting() {
|
||
|
let name = "my-app";
|
||
|
let cmd = common::quoting_command(name);
|
||
|
common::assert_matches_path(
|
||
|
"tests/snapshots/quoting.fig.js",
|
||
|
clap_complete_fig::Fig,
|
||
|
cmd,
|
||
|
name,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn aliases() {
|
||
|
let name = "my-app";
|
||
|
let cmd = common::aliases_command(name);
|
||
|
common::assert_matches_path(
|
||
|
"tests/snapshots/aliases.fig.js",
|
||
|
clap_complete_fig::Fig,
|
||
|
cmd,
|
||
|
name,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn sub_subcommands() {
|
||
|
let name = "my-app";
|
||
|
let cmd = common::sub_subcommands_command(name);
|
||
|
common::assert_matches_path(
|
||
|
"tests/snapshots/sub_subcommands.fig.js",
|
||
|
clap_complete_fig::Fig,
|
||
|
cmd,
|
||
|
name,
|
||
|
);
|
||
|
}
|
||
|
|
||
|
#[test]
|
||
|
fn value_hint() {
|
||
|
let name = "my-app";
|
||
|
let cmd = common::value_hint_command(name);
|
||
|
common::assert_matches_path(
|
||
|
"tests/snapshots/value_hint.fig.js",
|
||
|
clap_complete_fig::Fig,
|
||
|
cmd,
|
||
|
name,
|
||
|
);
|
||
|
}
|