xtask/cli/devtools_test.rs
1use clap::Args;
2
3#[derive(Args, Debug)]
4pub(crate) struct DevtoolsTestArg {
5 #[arg(
6 long,
7 short,
8 default_value = "false",
9 help = "Accept newly generated macro-snapshots"
10 )]
11 pub(crate) accept_snapshot: bool,
12
13 #[arg(long, short, help = "Filter tests by name")]
14 pub(crate) filter: Option<String>,
15}