diff options
| author | Yusuke Sakurai <kerokerokerop@gmail.com> | 2019-02-11 08:49:48 +0900 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-02-10 18:49:48 -0500 |
| commit | 33f62789cde407059abba0a7ac18b2145c648ea7 (patch) | |
| tree | 454d487f232a61f6c57e2ebdad66e49bf939e4d6 /io/writers_test.ts | |
| parent | ed20bda6ec324b8143c6210024647d2692232c26 (diff) | |
feat: multipart, etc.. (denoland/deno_std#180)
Original: https://github.com/denoland/deno_std/commit/fda9c98d055091fa886fa444ebd1adcd2ecd21bc
Diffstat (limited to 'io/writers_test.ts')
| -rw-r--r-- | io/writers_test.ts | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/io/writers_test.ts b/io/writers_test.ts new file mode 100644 index 000000000..01388497c --- /dev/null +++ b/io/writers_test.ts @@ -0,0 +1,14 @@ +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"); +}); |
