add some tags with escapes to the tests

This commit is contained in:
Sebastian Kuzminsky 2025-07-23 20:24:42 -06:00
parent ee269e212e
commit 9db4e6bef8
7 changed files with 10 additions and 0 deletions

View file

@ -674,6 +674,11 @@ mod tests {
done_time: None, done_time: None,
tags: Vec::<String>::from([ tags: Vec::<String>::from([
String::from("TAG2"), String::from("TAG2"),
String::from("bird/wing"),
String::from("bird/wing/feather"),
String::from("deer,antler"),
String::from("deer,antler,tassle"),
String::from("hop,scotch/shoe"),
String::from("i-am-also-a-tag"), String::from("i-am-also-a-tag"),
String::from("tag1"), String::from("tag1"),
]), ]),

View file

@ -128,6 +128,11 @@ mod tests {
done_time: None, done_time: None,
tags: Vec::<String>::from([ tags: Vec::<String>::from([
String::from("TAG2"), String::from("TAG2"),
String::from("bird/wing"),
String::from("bird/wing/feather"),
String::from("deer,antler"),
String::from("deer,antler,tassle"),
String::from("hop,scotch/shoe"),
String::from("i-am-also-a-tag"), String::from("i-am-also-a-tag"),
String::from("tag1"), String::from("tag1"),
]), ]),