mirror of
https://github.com/dtolnay/cargo-expand.git
synced 2025-04-03 21:07:37 +03:00
Run clap debug asserts as a unit test
This commit is contained in:
parent
7f7c225c38
commit
98ebe9da5d
2 changed files with 6 additions and 0 deletions
1
.github/workflows/ci.yml
vendored
1
.github/workflows/ci.yml
vendored
|
@ -34,6 +34,7 @@ jobs:
|
|||
toolchain: ${{matrix.rust}}
|
||||
- run: cargo check
|
||||
- run: cargo update && cargo check
|
||||
- run: cargo test
|
||||
|
||||
clippy:
|
||||
name: Clippy
|
||||
|
|
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue