summaryrefslogtreecommitdiff
path: root/fs/path/zero_length_strings_test.ts
diff options
context:
space:
mode:
Diffstat (limited to 'fs/path/zero_length_strings_test.ts')
-rw-r--r--fs/path/zero_length_strings_test.ts35
1 files changed, 18 insertions, 17 deletions
diff --git a/fs/path/zero_length_strings_test.ts b/fs/path/zero_length_strings_test.ts
index c769c9a79..469a0a7c0 100644
--- a/fs/path/zero_length_strings_test.ts
+++ b/fs/path/zero_length_strings_test.ts
@@ -2,7 +2,8 @@
// Ported from https://github.com/browserify/path-browserify/
const { cwd } = Deno;
-import { test, assertEqual } from "../../testing/mod.ts";
+import { test } from "../../testing/mod.ts";
+import { assertEq } from "../../testing/asserts.ts";
import * as path from "./mod.ts";
const pwd = cwd();
@@ -10,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.
- assertEqual(path.posix.join(""), ".");
- assertEqual(path.posix.join("", ""), ".");
- if (path.win32) assertEqual(path.win32.join(""), ".");
- if (path.win32) assertEqual(path.win32.join("", ""), ".");
- assertEqual(path.join(pwd), pwd);
- assertEqual(path.join(pwd, ""), pwd);
+ 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);
});
test(function normalizeZeroLength() {
// normalize will return '.' if the input is a zero-length string
- assertEqual(path.posix.normalize(""), ".");
- if (path.win32) assertEqual(path.win32.normalize(""), ".");
- assertEqual(path.normalize(pwd), pwd);
+ assertEq(path.posix.normalize(""), ".");
+ if (path.win32) assertEq(path.win32.normalize(""), ".");
+ assertEq(path.normalize(pwd), pwd);
});
test(function isAbsoluteZeroLength() {
// Since '' is not a valid path in any of the common environments, return false
- assertEqual(path.posix.isAbsolute(""), false);
- if (path.win32) assertEqual(path.win32.isAbsolute(""), false);
+ assertEq(path.posix.isAbsolute(""), false);
+ if (path.win32) assertEq(path.win32.isAbsolute(""), false);
});
test(function resolveZeroLength() {
// resolve, internally ignores all the zero-length strings and returns the
// current working directory
- assertEqual(path.resolve(""), pwd);
- assertEqual(path.resolve("", ""), pwd);
+ assertEq(path.resolve(""), pwd);
+ assertEq(path.resolve("", ""), pwd);
});
test(function relativeZeroLength() {
// relative, internally calls resolve. So, '' is actually the current directory
- assertEqual(path.relative("", pwd), "");
- assertEqual(path.relative(pwd, ""), "");
- assertEqual(path.relative(pwd, pwd), "");
+ assertEq(path.relative("", pwd), "");
+ assertEq(path.relative(pwd, ""), "");
+ assertEq(path.relative(pwd, pwd), "");
});