]> git.proxmox.com Git - proxmox.git/commitdiff
schema: add another test case
authorWolfgang Bumiller <w.bumiller@proxmox.com>
Wed, 9 Mar 2022 13:29:53 +0000 (14:29 +0100)
committerWolfgang Bumiller <w.bumiller@proxmox.com>
Wed, 9 Mar 2022 13:29:53 +0000 (14:29 +0100)
Signed-off-by: Wolfgang Bumiller <w.bumiller@proxmox.com>
proxmox-schema/src/property_string.rs

index 964ac4f02ea884f2f4cc1fa1237cf6e64e75b32b..20c9a30e73b408e9e0eec495da0222beadcfc7fe 100644 (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());
 }