diff options
author | Rauf Islam <31735267+ItsRauf@users.noreply.github.com> | 2020-08-03 18:17:31 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-03 18:17:31 -0400 |
commit | 40ead6cc98ab1d02c8ca0587d24c218e81aa47b7 (patch) | |
tree | 3e8f5d0796d5d9e04c647be90e33ffce3bebe1ef /std/encoding/toml_test.ts | |
parent | 5fc5e7b54a9fba421dfc473016625a4f592403ed (diff) |
fix(std/encoding/toml): Add boolean support to stringify (#6941)
Diffstat (limited to 'std/encoding/toml_test.ts')
-rw-r--r-- | std/encoding/toml_test.ts | 4 |
1 files changed, 4 insertions, 0 deletions
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" |