mirror of
https://github.com/denoland/deno.git
synced 2024-10-31 09:14:20 -04:00
29 lines
519 B
TypeScript
29 lines
519 B
TypeScript
import { assertEquals } from "../testing/asserts.ts";
|
|
import { stringify, parse } from "./querystring.ts";
|
|
|
|
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"],
|
|
});
|
|
},
|
|
});
|