mirror of
https://github.com/denoland/deno.git
synced 2024-11-01 09:24:20 -04:00
31 lines
528 B
TypeScript
31 lines
528 B
TypeScript
|
const { test } = Deno;
|
||
|
import { assertEquals } from "../testing/asserts.ts";
|
||
|
import { stringify, parse } from "./querystring.ts";
|
||
|
|
||
|
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"
|
||
|
);
|
||
|
}
|
||
|
});
|
||
|
|
||
|
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"]
|
||
|
});
|
||
|
}
|
||
|
});
|