mirror of
https://github.com/denoland/deno.git
synced 2024-12-26 00:59:24 -05:00
17663c1232
Original: c0390ade3d
14 lines
460 B
TypeScript
14 lines
460 B
TypeScript
const { copy } = Deno;
|
|
import { assert, test } from "../testing/mod.ts";
|
|
import { StringWriter } from "./writers.ts";
|
|
import { StringReader } from "./readers.ts";
|
|
import { copyN } from "./ioutil.ts";
|
|
|
|
test(async function ioStringWriter() {
|
|
const w = new StringWriter("base");
|
|
const r = new StringReader("0123456789");
|
|
await copyN(w, r, 4);
|
|
assert.equal(w.toString(), "base0123");
|
|
await copy(w, r);
|
|
assert.equal(w.toString(), "base0123456789");
|
|
});
|