summaryrefslogtreecommitdiff
path: root/std/io/writers_test.ts
blob: a50f8b3d16f9f9381a2b4bd8dbca7ffa55d229d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
const { copy, test } = Deno;
import { assertEquals } from "../testing/asserts.ts";
import { StringWriter } from "./writers.ts";
import { StringReader } from "./readers.ts";
import { copyN } from "./ioutil.ts";

test("ioStringWriter", async function (): Promise<void> {
  const w = new StringWriter("base");
  const r = new StringReader("0123456789");
  await copyN(r, w, 4);
  assertEquals(w.toString(), "base0123");
  await copy(r, w);
  assertEquals(w.toString(), "base0123456789");
});