summaryrefslogtreecommitdiff
path: root/cli/tests/unit/umask_test.ts
diff options
context:
space:
mode:
authorRyan Dahl <ry@tinyclouds.org>2020-05-20 17:52:51 -0400
committerGitHub <noreply@github.com>2020-05-20 17:52:51 -0400
commit30702e2678200b6e21ba142347d2d213b86e9c6d (patch)
treefe53d6ad8631e7e2e76c3b3c5935e26bff89a352 /cli/tests/unit/umask_test.ts
parent49dda23f6b936f21de2a3de4be39771f30ddd6e9 (diff)
move js unit tests to cli/tests (#5678)
Diffstat (limited to 'cli/tests/unit/umask_test.ts')
-rw-r--r--cli/tests/unit/umask_test.ts15
1 files changed, 15 insertions, 0 deletions
diff --git a/cli/tests/unit/umask_test.ts b/cli/tests/unit/umask_test.ts
new file mode 100644
index 000000000..bfac65d52
--- /dev/null
+++ b/cli/tests/unit/umask_test.ts
@@ -0,0 +1,15 @@
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+import { unitTest, assertEquals } from "./test_util.ts";
+
+unitTest(
+ {
+ ignore: Deno.build.os === "windows",
+ },
+ function umaskSuccess(): void {
+ const prevMask = Deno.umask(0o020);
+ const newMask = Deno.umask(prevMask);
+ const finalMask = Deno.umask();
+ assertEquals(newMask, 0o020);
+ assertEquals(finalMask, prevMask);
+ }
+);