From 08f3ae92d3935559a5134bc5da900d3784142bf3 Mon Sep 17 00:00:00 2001 From: Peter Date: Sun, 11 Oct 2020 21:33:23 +0200 Subject: fix(std): Parsing inline arrays of inline tables in toml (#7902) --- std/encoding/toml_test.ts | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) (limited to 'std/encoding/toml_test.ts') diff --git a/std/encoding/toml_test.ts b/std/encoding/toml_test.ts index 5666a875a..8e25d61ea 100644 --- a/std/encoding/toml_test.ts +++ b/std/encoding/toml_test.ts @@ -441,3 +441,28 @@ Deno.test({ assertEquals(actual, expected); }, }); + +Deno.test({ + name: "[TOML] Inline Array of Inline Table", + fn(): void { + const expected = { + inlineArray: { + string: [{ var: "a string" }], + my_points: [ + { x: 1, y: 2, z: 3 }, + { x: 7, y: 8, z: 9 }, + { x: 2, y: 4, z: 8 }, + ], + points: [ + { x: 1, y: 2, z: 3 }, + { x: 7, y: 8, z: 9 }, + { x: 2, y: 4, z: 8 }, + ], + }, + }; + const actual = parseFile( + path.join(testdataDir, "inlineArrayOfInlineTable.toml"), + ); + assertEquals(actual, expected); + }, +}); -- cgit v1.2.3