blob: decf611f1b51d10eb564c8d6af35fc5bcd0aa06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
const { copy } = Deno;
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
import { StringWriter } from "./writers.ts";
import { StringReader } from "./readers.ts";
import { copyN } from "./ioutil.ts";
test(async function ioStringWriter(): Promise<void> {
const w = new StringWriter("base");
const r = new StringReader("0123456789");
await copyN(w, r, 4);
assertEquals(w.toString(), "base0123");
await copy(w, r);
assertEquals(w.toString(), "base0123456789");
});
|