serde array value

This commit is contained in:
Robin Appelman 2023-12-18 22:56:27 +01:00
commit 6643822671
5 changed files with 218 additions and 4 deletions

View file

@ -192,9 +192,8 @@ fn test_serde(path: &str) {
#[test_case("tests/data/toplevel.vdf")]
#[test_case("tests/data/concrete.vmt")]
// #[test_case("tests/data/messy.vdf")]
// #[test_case("tests/data/DialogConfigOverlay_1280x720.vdf")]
// #[test_case("tests/data/serde_array_type.vdf")]
#[test_case("tests/data/DialogConfigOverlay_1280x720.vdf")]
#[test_case("tests/data/serde_array_type.vdf")]
fn test_serde_table(path: &str) {
let raw = read_to_string(path).unwrap();
match from_str::<Table>(&raw) {