2024-01-01 14:58:21 -05:00
|
|
|
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
|
2023-07-05 03:13:34 -04:00
|
|
|
|
|
|
|
import path from "node:path";
|
|
|
|
import posix from "node:path/posix";
|
|
|
|
import win32 from "node:path/win32";
|
|
|
|
|
2024-07-25 01:30:28 -04:00
|
|
|
import { assertStrictEquals } from "@std/assert";
|
2023-07-05 03:13:34 -04:00
|
|
|
|
|
|
|
Deno.test("[node/path] posix and win32 objects", () => {
|
|
|
|
assertStrictEquals(path.posix, posix);
|
|
|
|
assertStrictEquals(path.win32, win32);
|
|
|
|
assertStrictEquals(path.posix, path.posix.posix);
|
|
|
|
assertStrictEquals(path.win32, path.posix.win32);
|
|
|
|
assertStrictEquals(path.posix, path.win32.posix);
|
|
|
|
assertStrictEquals(path.win32, path.win32.win32);
|
|
|
|
});
|