diff options
author | Dmitry Sharshakov <sh7dm@outlook.com> | 2019-02-08 23:59:38 +0300 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-08 15:59:38 -0500 |
commit | 9ab03389f047e5520c184b9fce4cd5fb2e4804bd (patch) | |
tree | c1b3295aa6788595e4b73d28aeba0b8fdc8f3205 /js/rename_test.ts | |
parent | 3abaf9edb6877c328402b94fa0bcb6a9e0bbe86d (diff) |
Add --allow-read (#1689)
Co-authored-by: Greg Altman <g.s.altman@gmail.com>
Diffstat (limited to 'js/rename_test.ts')
-rw-r--r-- | js/rename_test.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/js/rename_test.ts b/js/rename_test.ts index bc08f006b..33c7d06ef 100644 --- a/js/rename_test.ts +++ b/js/rename_test.ts @@ -2,7 +2,7 @@ import { testPerm, assert, assertEqual } from "./test_util.ts"; import * as deno from "deno"; -testPerm({ write: true }, function renameSyncSuccess() { +testPerm({ read: true, write: true }, function renameSyncSuccess() { const testDir = deno.makeTempDirSync(); const oldpath = testDir + "/oldpath"; const newpath = testDir + "/newpath"; @@ -24,7 +24,7 @@ testPerm({ write: true }, function renameSyncSuccess() { assertEqual(oldPathInfo, undefined); }); -testPerm({ write: false }, function renameSyncPerm() { +testPerm({ read: true, write: false }, function renameSyncPerm() { let err; try { const oldpath = "/oldbaddir"; @@ -37,7 +37,7 @@ testPerm({ write: false }, function renameSyncPerm() { assertEqual(err.name, "PermissionDenied"); }); -testPerm({ write: true }, async function renameSuccess() { +testPerm({ read: true, write: true }, async function renameSuccess() { const testDir = deno.makeTempDirSync(); const oldpath = testDir + "/oldpath"; const newpath = testDir + "/newpath"; |