migrate deno_path to deno_std (denoland/deno_std#26)

Previously https://github.com/zhmushan/deno_path

Original: 1a35f9daf5
This commit is contained in:
木杉 2018-12-19 10:29:39 +08:00 committed by Ryan Dahl
parent 3c8f564ab8
commit 2d58da520f
16 changed files with 2292 additions and 3 deletions

13
test.ts
View file

@ -1,5 +1,5 @@
#!/usr/bin/env deno --allow-run --allow-net
import { run } from "deno";
import { run, exit } from "deno";
import "net/bufio_test.ts";
import "net/http_test.ts";
@ -10,6 +10,17 @@ import { runTests, completePromise } from "net/file_server_test.ts";
const fileServer = run({
args: ["deno", "--allow-net", "net/file_server.ts", "."]
});
// path test
import "path/basename_test.ts";
import "path/dirname_test.ts";
import "path/extname_test.ts";
import "path/isabsolute_test.ts";
import "path/join_test.ts";
import "path/parse_format_test.ts";
import "path/relative_test.ts";
import "path/resolve_test.ts";
import "path/zero_length_strings_test.ts";
// I am also too lazy to do this properly LOL
runTests(new Promise(res => setTimeout(res, 5000)));
(async () => {