schema: add another test case

Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
This commit is contained in:
Wolfgang Bumiller 2022-03-09 14:29:53 +01:00
parent d7283d5aeb
commit 6221d86c64

View File

@ -166,4 +166,5 @@ fn iterate_over_property_string() {
assert!(iter.next().is_none());
assert!(PropertyIterator::new(r#"key="open \\ value"#).next().unwrap().is_err());
assert!(PropertyIterator::new(r#"key="open \\ value\""#).next().unwrap().is_err());
}