summaryrefslogtreecommitdiff
path: root/cli/tests/testdata/cat.ts
diff options
context:
space:
mode:
Diffstat (limited to 'cli/tests/testdata/cat.ts')
-rw-r--r--cli/tests/testdata/cat.ts10
1 files changed, 0 insertions, 10 deletions
diff --git a/cli/tests/testdata/cat.ts b/cli/tests/testdata/cat.ts
deleted file mode 100644
index c2a500b3e..000000000
--- a/cli/tests/testdata/cat.ts
+++ /dev/null
@@ -1,10 +0,0 @@
-import { copy } from "../../../test_util/std/streams/copy.ts";
-async function main() {
- for (let i = 1; i < Deno.args.length; i++) {
- const filename = Deno.args[i];
- const file = await Deno.open(filename);
- await copy(file, Deno.stdout);
- }
-}
-
-main();