deno.land / std@0.201.0 / url / dirname_test.ts
12345678910111213141516171819202122232425262728293031// Copyright 2018-2023 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"), ], [ 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")],];
Deno.test("dirname", function () { for (const [test_url, expected] of TESTSUITE) { assertEquals(url.dirname(test_url), expected); }});
Version Info