summaryrefslogtreecommitdiff
path: root/tests/cat.ts
diff options
context:
space:
mode:
Diffstat (limited to 'tests/cat.ts')
-rw-r--r--tests/cat.ts11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/cat.ts b/tests/cat.ts
deleted file mode 100644
index 756238be6..000000000
--- a/tests/cat.ts
+++ /dev/null
@@ -1,11 +0,0 @@
-const { stdout, open, copy, args } = Deno;
-
-async function main(): Promise<void> {
- for (let i = 1; i < args.length; i++) {
- const filename = args[i];
- const file = await open(filename);
- await copy(stdout, file);
- }
-}
-
-main();