2022-03-07 20:08:56 +00:00
|
|
|
mod common;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn basic() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::basic_command(name);
|
2024-02-14 22:44:57 +00:00
|
|
|
common::assert_matches(
|
|
|
|
snapbox::file!["snapshots/basic.fig.js"],
|
2022-03-07 20:08:56 +00:00
|
|
|
clap_complete_fig::Fig,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn feature_sample() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::feature_sample_command(name);
|
2024-02-14 22:44:57 +00:00
|
|
|
common::assert_matches(
|
|
|
|
snapbox::file!["snapshots/feature_sample.fig.js"],
|
2022-03-07 20:08:56 +00:00
|
|
|
clap_complete_fig::Fig,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn special_commands() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::special_commands_command(name);
|
2024-02-14 22:44:57 +00:00
|
|
|
common::assert_matches(
|
|
|
|
snapbox::file!["snapshots/special_commands.fig.js"],
|
2022-03-07 20:08:56 +00:00
|
|
|
clap_complete_fig::Fig,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn quoting() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::quoting_command(name);
|
2024-02-14 22:44:57 +00:00
|
|
|
common::assert_matches(
|
|
|
|
snapbox::file!["snapshots/quoting.fig.js"],
|
2022-03-07 20:08:56 +00:00
|
|
|
clap_complete_fig::Fig,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn aliases() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::aliases_command(name);
|
2024-02-14 22:44:57 +00:00
|
|
|
common::assert_matches(
|
|
|
|
snapbox::file!["snapshots/aliases.fig.js"],
|
2022-03-07 20:08:56 +00:00
|
|
|
clap_complete_fig::Fig,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn sub_subcommands() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::sub_subcommands_command(name);
|
2024-02-14 22:44:57 +00:00
|
|
|
common::assert_matches(
|
|
|
|
snapbox::file!["snapshots/sub_subcommands.fig.js"],
|
2022-03-07 20:08:56 +00:00
|
|
|
clap_complete_fig::Fig,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn value_hint() {
|
|
|
|
let name = "my-app";
|
|
|
|
let cmd = common::value_hint_command(name);
|
2024-02-14 22:44:57 +00:00
|
|
|
common::assert_matches(
|
|
|
|
snapbox::file!["snapshots/value_hint.fig.js"],
|
2022-03-07 20:08:56 +00:00
|
|
|
clap_complete_fig::Fig,
|
|
|
|
cmd,
|
|
|
|
name,
|
|
|
|
);
|
|
|
|
}
|