diff options
Diffstat (limited to 'fs/path/zero_length_strings_test.ts')
| -rw-r--r-- | fs/path/zero_length_strings_test.ts | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/fs/path/zero_length_strings_test.ts b/fs/path/zero_length_strings_test.ts index 469a0a7c0..20405563c 100644 --- a/fs/path/zero_length_strings_test.ts +++ b/fs/path/zero_length_strings_test.ts @@ -3,7 +3,7 @@ const { cwd } = Deno; import { test } from "../../testing/mod.ts"; -import { assertEq } from "../../testing/asserts.ts"; +import { assertEquals } from "../../testing/asserts.ts"; import * as path from "./mod.ts"; const pwd = cwd(); @@ -11,37 +11,37 @@ const pwd = cwd(); test(function joinZeroLength() { // join will internally ignore all the zero-length strings and it will return // '.' if the joined string is a zero-length string. - assertEq(path.posix.join(""), "."); - assertEq(path.posix.join("", ""), "."); - if (path.win32) assertEq(path.win32.join(""), "."); - if (path.win32) assertEq(path.win32.join("", ""), "."); - assertEq(path.join(pwd), pwd); - assertEq(path.join(pwd, ""), pwd); + assertEquals(path.posix.join(""), "."); + assertEquals(path.posix.join("", ""), "."); + if (path.win32) assertEquals(path.win32.join(""), "."); + if (path.win32) assertEquals(path.win32.join("", ""), "."); + assertEquals(path.join(pwd), pwd); + assertEquals(path.join(pwd, ""), pwd); }); test(function normalizeZeroLength() { // normalize will return '.' if the input is a zero-length string - assertEq(path.posix.normalize(""), "."); - if (path.win32) assertEq(path.win32.normalize(""), "."); - assertEq(path.normalize(pwd), pwd); + assertEquals(path.posix.normalize(""), "."); + if (path.win32) assertEquals(path.win32.normalize(""), "."); + assertEquals(path.normalize(pwd), pwd); }); test(function isAbsoluteZeroLength() { // Since '' is not a valid path in any of the common environments, return false - assertEq(path.posix.isAbsolute(""), false); - if (path.win32) assertEq(path.win32.isAbsolute(""), false); + assertEquals(path.posix.isAbsolute(""), false); + if (path.win32) assertEquals(path.win32.isAbsolute(""), false); }); test(function resolveZeroLength() { // resolve, internally ignores all the zero-length strings and returns the // current working directory - assertEq(path.resolve(""), pwd); - assertEq(path.resolve("", ""), pwd); + assertEquals(path.resolve(""), pwd); + assertEquals(path.resolve("", ""), pwd); }); test(function relativeZeroLength() { // relative, internally calls resolve. So, '' is actually the current directory - assertEq(path.relative("", pwd), ""); - assertEq(path.relative(pwd, ""), ""); - assertEq(path.relative(pwd, pwd), ""); + assertEquals(path.relative("", pwd), ""); + assertEquals(path.relative(pwd, ""), ""); + assertEquals(path.relative(pwd, pwd), ""); }); |
