2022-03-07 20:03:46 +00:00
|
|
|
mod common;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn basic() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::basic_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/basic.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn feature_sample() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::feature_sample_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/feature_sample.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn special_commands() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::special_commands_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/special_commands.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn quoting() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::quoting_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/quoting.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn aliases() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::aliases_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/aliases.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sub_subcommands() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::sub_subcommands_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/sub_subcommands.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn value_hint() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::value_hint_command(name);
|
|
|
|
common::assert_matches_path(
|
2022-04-22 21:20:57 +00:00
|
|
|
"tests/snapshots/value_hint.fish",
|
2022-03-07 20:03:46 +00:00
|
|
|
clap_complete::shells::Fish,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|