mirror of
https://github.com/clap-rs/clap
synced 2024-12-12 22:02:35 +00:00
1e2471649e
This is to prevent #3648 from happening again
14 lines
392 B
TOML
14 lines
392 B
TOML
bin.name = "stdio-fixture"
|
|
args = ["--unknown-argument"]
|
|
status.code = 2
|
|
stdout = ""
|
|
stderr = """
|
|
error: Found argument '--unknown-argument' which wasn't expected, or isn't valid in this context
|
|
|
|
\tIf you tried to supply `--unknown-argument` as a value rather than a flag, use `-- --unknown-argument`
|
|
|
|
USAGE:
|
|
stdio-fixture[EXE] [OPTIONS] [SUBCOMMAND]
|
|
|
|
For more information try --help
|
|
"""
|