diff options
Diffstat (limited to 'cli/tests/unit_node/querystring_test.ts')
-rw-r--r-- | cli/tests/unit_node/querystring_test.ts | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/cli/tests/unit_node/querystring_test.ts b/cli/tests/unit_node/querystring_test.ts new file mode 100644 index 000000000..0b3b22d62 --- /dev/null +++ b/cli/tests/unit_node/querystring_test.ts @@ -0,0 +1,30 @@ +// Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. +import { assertEquals } from "../../../test_util/std/testing/asserts.ts"; +import { parse, stringify } from "node:querystring"; + +Deno.test({ + name: "stringify", + fn() { + assertEquals( + stringify({ + a: "hello", + b: 5, + c: true, + d: ["foo", "bar"], + }), + "a=hello&b=5&c=true&d=foo&d=bar", + ); + }, +}); + +Deno.test({ + name: "parse", + fn() { + assertEquals(parse("a=hello&b=5&c=true&d=foo&d=bar"), { + a: "hello", + b: "5", + c: "true", + d: ["foo", "bar"], + }); + }, +}); |