From 40ead6cc98ab1d02c8ca0587d24c218e81aa47b7 Mon Sep 17 00:00:00 2001 From: Rauf Islam <31735267+ItsRauf@users.noreply.github.com> Date: Mon, 3 Aug 2020 18:17:31 -0400 Subject: fix(std/encoding/toml): Add boolean support to stringify (#6941) --- std/encoding/toml_test.ts | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'std/encoding/toml_test.ts') diff --git a/std/encoding/toml_test.ts b/std/encoding/toml_test.ts index 0a927cde9..cc3d190b0 100644 --- a/std/encoding/toml_test.ts +++ b/std/encoding/toml_test.ts @@ -349,6 +349,8 @@ Deno.test({ [1, 2], ], hosts: ["alpha", "omega"], + bool: true, + bool2: false, }; const expected = `deno = "is" not = "[node]" @@ -383,6 +385,8 @@ sf5 = NaN sf6 = NaN data = [["gamma","delta"],[1,2]] hosts = ["alpha","omega"] +bool = true +bool2 = false [foo] bar = "deno" -- cgit v1.2.3