summaryrefslogtreecommitdiff
path: root/os/test.ts
diff options
context:
space:
mode:
authorEvgeniy Karagodin <ekaragodin@gmail.com>2019-07-08 02:41:09 +0700
committerRyan Dahl <ry@tinyclouds.org>2019-07-07 15:41:09 -0400
commitc08a27de9ac136d212b6510976435e1fc9694dc8 (patch)
tree58ed448e05847da7aef7e41ec5415fc17d31345e /os/test.ts
parent9a01d6455ec3cfa955967102f576cb542999321a (diff)
Remove os.userHomeDir in favor of Deno.homeDir (denoland/deno_std#523)
Original: https://github.com/denoland/deno_std/commit/88b48945799322c0bc2f34134eed538759de4174
Diffstat (limited to 'os/test.ts')
-rw-r--r--os/test.ts8
1 files changed, 0 insertions, 8 deletions
diff --git a/os/test.ts b/os/test.ts
deleted file mode 100644
index f1993f22b..000000000
--- a/os/test.ts
+++ /dev/null
@@ -1,8 +0,0 @@
-// Copyright 2018-2019 the Deno authors. All rights reserved. MIT license.
-import { test } from "../testing/mod.ts";
-import { assertNotEquals } from "../testing/asserts.ts";
-import { userHomeDir } from "./mod.ts";
-
-test(function testUserHomeDir(): void {
- assertNotEquals(userHomeDir(), "");
-});