1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-22 15:06:54 -05:00
denoland-deno/std/io/writers_test.ts
2020-09-21 08:26:41 -04:00

23 lines
835 B
TypeScript

// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { assertEquals } from "../testing/asserts.ts";
import { StringWriter } from "./writers.ts";
import { StringReader } from "./readers.ts";
import { copyN } from "./ioutil.ts";
Deno.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 Deno.copy(r, w);
assertEquals(w.toString(), "base0123456789");
});
Deno.test("ioStringWriterSync", function (): void {
const encoder = new TextEncoder();
const w = new StringWriter("");
w.writeSync(encoder.encode("deno"));
assertEquals(w.toString(), "deno");
w.writeSync(encoder.encode("\nland"));
assertEquals(w.toString(), "deno\nland");
});