mirror of
https://github.com/meilisearch/meilisearch.git
synced 2025-07-27 00:31:02 +00:00
Merge #2245
2245: Add test to validate cli r=irevoire a=MarinPostma followup on #2242 and #2243 Add a test to make sure the cli is valid, and add a CI task to run the tests in debug to make sure we hit debug assertions. FYI `@curquiza,` because of CI changes Co-authored-by: ad hoc <postma.marin@protonmail.com>
This commit is contained in:
@ -258,3 +258,13 @@ fn load_ocsp(filename: &Option<PathBuf>) -> anyhow::Result<Vec<u8>> {
|
||||
|
||||
Ok(ret)
|
||||
}
|
||||
|
||||
#[cfg(test)]
|
||||
mod test {
|
||||
use super::*;
|
||||
|
||||
#[test]
|
||||
fn test_valid_opt() {
|
||||
assert!(Opt::try_parse_from(Some("")).is_ok());
|
||||
}
|
||||
}
|
||||
|
Reference in New Issue
Block a user