Run clap debug asserts as a unit test

This commit is contained in:
David Tolnay 2022-01-02 14:53:23 -08:00
parent 7f7c225c38
commit 98ebe9da5d
No known key found for this signature in database
GPG key ID: F9BA143B95FF6D82
2 changed files with 6 additions and 0 deletions

View file

@ -34,6 +34,7 @@ jobs:
toolchain: ${{matrix.rust}}
- run: cargo check
- run: cargo update && cargo check
- run: cargo test
clippy:
name: Clippy

View file

@ -161,3 +161,8 @@ fn parse_selector(s: &str) -> Result<Selector, <Selector as FromStr>::Err> {
s.parse()
}
}
#[test]
fn test_cli() {
<Opts as clap::IntoApp>::into_app().debug_assert();
}