summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_mkdtemp_test.ts
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2021-02-02 19:05:46 +0800
committerGitHub <noreply@github.com>2021-02-02 12:05:46 +0100
commit6abf126c2a7a451cded8c6b5e6ddf1b69c84055d (patch)
treefd94c013a19fcb38954844085821ec1601c20e18 /std/node/_fs/_fs_mkdtemp_test.ts
parenta2b5d44f1aa9d64f448a2a3cc2001272e2f60b98 (diff)
chore: remove std directory (#9361)
This removes the std folder from the tree. Various parts of the tests are pretty tightly dependent on std (47 direct imports and 75 indirect imports, not counting the cli tests that use them as fixtures) so I've added std as a submodule for now.
Diffstat (limited to 'std/node/_fs/_fs_mkdtemp_test.ts')
-rw-r--r--std/node/_fs/_fs_mkdtemp_test.ts84
1 files changed, 0 insertions, 84 deletions
diff --git a/std/node/_fs/_fs_mkdtemp_test.ts b/std/node/_fs/_fs_mkdtemp_test.ts
deleted file mode 100644
index d41c52794..000000000
--- a/std/node/_fs/_fs_mkdtemp_test.ts
+++ /dev/null
@@ -1,84 +0,0 @@
-// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
-import {
- assert,
- assertThrows,
- assertThrowsAsync,
-} from "../../testing/asserts.ts";
-import { mkdtemp, mkdtempSync } from "./_fs_mkdtemp.ts";
-import { existsSync } from "./_fs_exists.ts";
-import { env } from "../process.ts";
-import { isWindows } from "../../_util/os.ts";
-import { promisify } from "../_util/_util_promisify.ts";
-
-const prefix = isWindows ? env.TEMP + "\\" : (env.TMPDIR || "/tmp") + "/";
-const doesNotExists = "/does/not/exists/";
-const options = { encoding: "ascii" };
-const badOptions = { encoding: "bogus" };
-
-const mkdtempP = promisify(mkdtemp);
-
-Deno.test({
- name: "[node/fs] mkdtemp",
- fn: async () => {
- const directory = await mkdtempP(prefix);
- assert(existsSync(directory));
- Deno.removeSync(directory);
- },
-});
-
-Deno.test({
- name: "[node/fs] mkdtemp (does not exists)",
- fn: async () => {
- await assertThrowsAsync(() => mkdtempP(doesNotExists));
- },
-});
-
-Deno.test({
- name: "[node/fs] mkdtemp (with options)",
- fn: async () => {
- const directory = await mkdtempP(prefix, options);
- assert(existsSync(directory));
- Deno.removeSync(directory);
- },
-});
-
-Deno.test({
- name: "[node/fs] mkdtemp (with bad options)",
- fn: async () => {
- await assertThrowsAsync(() => mkdtempP(prefix, badOptions));
- },
-});
-
-Deno.test({
- name: "[node/fs] mkdtempSync",
- fn: () => {
- const directory = mkdtempSync(prefix);
- const dirExists = existsSync(directory);
- Deno.removeSync(directory);
- assert(dirExists);
- },
-});
-
-Deno.test({
- name: "[node/fs] mkdtempSync (does not exists)",
- fn: () => {
- assertThrows(() => mkdtempSync(doesNotExists));
- },
-});
-
-Deno.test({
- name: "[node/fs] mkdtempSync (with options)",
- fn: () => {
- const directory = mkdtempSync(prefix, options);
- const dirExists = existsSync(directory);
- Deno.removeSync(directory);
- assert(dirExists);
- },
-});
-
-Deno.test({
- name: "[node/fs] mkdtempSync (with bad options)",
- fn: () => {
- assertThrows(() => mkdtempSync(prefix, badOptions));
- },
-});