deno.land / std@0.224.0 / url / normalize_test.ts

normalize_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../assert/mod.ts";import * as url from "./mod.ts";
const TESTSUITE = [ [ "https:///deno.land///std//assert////mod.ts", new URL("https://deno.land/std/assert/mod.ts"), ], [ "https://deno.land///std//assert////mod.ts?foo=bar", new URL("https://deno.land/std/assert/mod.ts?foo=bar"), ], [ "https://deno.land///std//assert////mod.ts#header", new URL("https://deno.land/std/assert/mod.ts#header"), ], [ "https:///deno.land/std/assert/mod.ts/..", new URL("https://deno.land/std/assert/"), ], [ new URL("https://deno.land/std/assert/../async/retry.ts/"), new URL("https://deno.land/std/async/retry.ts/"), ], [ "https:/deno.land//..", new URL("https://deno.land"), ],] as const;
Deno.test("normalize()", function () { for (const [testUrl, expected] of TESTSUITE) { assertEquals(url.normalize(testUrl), expected); }});
std

Version Info

Tagged at
3 weeks ago