diff options
Diffstat (limited to 'std/path/zero_length_strings_test.ts')
-rw-r--r-- | std/path/zero_length_strings_test.ts | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/std/path/zero_length_strings_test.ts b/std/path/zero_length_strings_test.ts index 771395a8c..e2ec466a5 100644 --- a/std/path/zero_length_strings_test.ts +++ b/std/path/zero_length_strings_test.ts @@ -1,13 +1,11 @@ // Copyright the Browserify authors. MIT License. // Ported from https://github.com/browserify/path-browserify/ - -const { cwd, test } = Deno; import { assertEquals } from "../testing/asserts.ts"; import * as path from "./mod.ts"; -const pwd = cwd(); +const pwd = Deno.cwd(); -test("joinZeroLength", function () { +Deno.test("joinZeroLength", function () { // join will internally ignore all the zero-length strings and it will return // '.' if the joined string is a zero-length string. assertEquals(path.posix.join(""), "."); @@ -18,28 +16,28 @@ test("joinZeroLength", function () { assertEquals(path.join(pwd, ""), pwd); }); -test("normalizeZeroLength", function () { +Deno.test("normalizeZeroLength", function () { // normalize will return '.' if the input is a zero-length string assertEquals(path.posix.normalize(""), "."); if (path.win32) assertEquals(path.win32.normalize(""), "."); assertEquals(path.normalize(pwd), pwd); }); -test("isAbsoluteZeroLength", function () { +Deno.test("isAbsoluteZeroLength", function () { // Since '' is not a valid path in any of the common environments, // return false assertEquals(path.posix.isAbsolute(""), false); if (path.win32) assertEquals(path.win32.isAbsolute(""), false); }); -test("resolveZeroLength", function () { +Deno.test("resolveZeroLength", function () { // resolve, internally ignores all the zero-length strings and returns the // current working directory assertEquals(path.resolve(""), pwd); assertEquals(path.resolve("", ""), pwd); }); -test("relativeZeroLength", function () { +Deno.test("relativeZeroLength", function () { // relative, internally calls resolve. So, '' is actually the current // directory assertEquals(path.relative("", pwd), ""); |