1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-26 09:10:40 -05:00
denoland-deno/io/writers_test.ts

16 lines
521 B
TypeScript
Raw Normal View History

const { copy } = Deno;
2019-03-06 16:39:50 -05:00
import { test } from "../testing/mod.ts";
import { assertEquals } from "../testing/asserts.ts";
2019-02-10 18:49:48 -05:00
import { StringWriter } from "./writers.ts";
import { StringReader } from "./readers.ts";
import { copyN } from "./ioutil.ts";
2019-04-24 07:41:23 -04:00
test(async function ioStringWriter(): Promise<void> {
2019-02-10 18:49:48 -05:00
const w = new StringWriter("base");
const r = new StringReader("0123456789");
2019-03-04 19:53:35 -05:00
await copyN(w, r, 4);
assertEquals(w.toString(), "base0123");
2019-02-10 18:49:48 -05:00
await copy(w, r);
assertEquals(w.toString(), "base0123456789");
2019-02-10 18:49:48 -05:00
});