std/url/dirname_test.ts
2024-04-29 11:57:30 +09:00

34 lines
841 B
TypeScript
Executable File

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "@std/assert";
import * as url from "./mod.ts";
const TESTSUITE = [
[
"https://deno.land/std/assert/mod.ts",
new URL("https://deno.land/std/assert"),
],
[
new URL("https://deno.land/std/assert/mod.ts"),
new URL("https://deno.land/std/assert"),
],
[
new URL("https://deno.land/std/assert/mod.ts?foo=bar"),
new URL("https://deno.land/std/assert"),
],
[
new URL("https://deno.land/std/assert/mod.ts#header"),
new URL("https://deno.land/std/assert"),
],
[
new URL("https://deno.land///"),
new URL("https://deno.land"),
],
] as const;
Deno.test("dirname()", function () {
for (const [testUrl, expected] of TESTSUITE) {
assertEquals(url.dirname(testUrl), expected);
}
});