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

extname_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
// 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", ".ts"], [new URL("https://deno.land/std/assert/mod.ts"), ".ts"], [new URL("https://deno.land/std/assert/mod.ts?foo=bar"), ".ts"], [new URL("https://deno.land/std/assert/mod.ts#header"), ".ts"], [new URL("https://deno.land/std/assert/mod."), "."], [new URL("https://deno.land/std/assert/mod"), ""],] as const;
Deno.test("extname()", function () { for (const [testUrl, expected] of TESTSUITE) { assertEquals(url.extname(testUrl), expected); }});
std

Version Info

Tagged at
3 weeks ago