test dumpv1 format regression

This commit is contained in:
mpostma 2021-08-04 11:02:17 +02:00
parent 3084537d1e
commit 29ca8271b3
1 changed files with 14 additions and 0 deletions

View File

@ -180,3 +180,17 @@ fn import_settings(dir_path: impl AsRef<Path>) -> anyhow::Result<Settings> {
Ok(metadata)
}
#[cfg(test)]
mod test {
use super::*;
#[test]
fn settings_format_regression() {
let settings = Settings::default();
assert_eq!(
r##"{"rankingRules":null,"distinctAttribute":null,"searchableAttributes":null,"displayedAttributes":null,"stopWords":null,"synonyms":null,"attributesForFaceting":null}"##,
serde_json::to_string(&settings).unwrap()
);
}
}