clap/clap_complete/tests
Pawel Zmarzly be15bd5d96 fix(complete): Fix zsh.rs subcommand deduplication
Fixing the iteration over all_subcommands in zsh.rs. We deduplicate
values on (sc_name, bin_name) keys, but then only iterate on bin_name.
This doesn't cause problems now, since all bin names seem to be unique.
However, without fixing this, the next commit would have started
generating duplicated functions with same names.

For example, with an #[long = "foo", visible_alias = "bar"] subcommand,
we'll end up with 2 pairs: [("foo", "foo"), ("bar", "foo")]. Before this
commit, we would have ended up generating _my-app__foo_commands()
functions. These functions should have identical content, so it is not
an error, just an inefficiency that we can fix.
2024-05-17 15:16:43 +01:00
..
snapshots fix(complete): Fix zsh.rs subcommand deduplication 2024-05-17 15:16:43 +01:00
testsuite chore: Update from template 2024-05-14 12:27:02 -05:00
examples.rs test(complete): Option to verify examples 2022-04-27 09:03:47 -05:00