other: add quick test for building clap app (#834)

This commit is contained in:
Clement Tsang 2022-10-15 07:27:56 -04:00 committed by GitHub
parent 8b72a33f40
commit 41970d9c64
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 10 additions and 0 deletions

View File

@ -404,3 +404,13 @@ use CPU (3) as the default instead.
app
}
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn verify_cli() {
build_app().debug_assert();
}
}