mirror of
https://github.com/denoland/deno.git
synced 2024-11-23 15:16:54 -05:00
17 lines
453 B
TypeScript
17 lines
453 B
TypeScript
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
|
||
|
import { unitTest, assertEquals } from "./test_util.ts";
|
||
|
|
||
|
unitTest(
|
||
|
{
|
||
|
skip: Deno.build.os === "win"
|
||
|
},
|
||
|
function umaskSuccess(): void {
|
||
|
const prevMask = Deno.umask(0o020);
|
||
|
const newMask = Deno.umask(prevMask);
|
||
|
const finalMask = Deno.umask();
|
||
|
assertEquals(newMask, 0o020);
|
||
|
assertEquals(finalMask, prevMask);
|
||
|
assertEquals(prevMask, 0o022);
|
||
|
}
|
||
|
);
|