mirror of
https://github.com/denoland/deno.git
synced 2024-11-27 16:10:57 -05:00
15 lines
476 B
TypeScript
15 lines
476 B
TypeScript
|
import { assert, test } from "../testing/mod.ts";
|
||
|
import { StringWriter } from "./writers.ts";
|
||
|
import { StringReader } from "./readers.ts";
|
||
|
import { copyN } from "./ioutil.ts";
|
||
|
import { copy } from "deno";
|
||
|
|
||
|
test(async function ioStringWriter() {
|
||
|
const w = new StringWriter("base");
|
||
|
const r = new StringReader("0123456789");
|
||
|
const n = await copyN(w, r, 4);
|
||
|
assert.equal(w.toString(), "base0123");
|
||
|
await copy(w, r);
|
||
|
assert.equal(w.toString(), "base0123456789");
|
||
|
});
|