deno.land / std@0.224.0 / io / read_all_test.ts

read_all_test.ts
نووسراو ببینە
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assert, assertEquals } from "../assert/mod.ts";import { readAll, readAllSync } from "./read_all.ts";import { Buffer } from "./buffer.ts";import { init } from "./_test_common.ts";
Deno.test("readAll()", async () => { const testBytes = init(); assert(testBytes); const reader = new Buffer(testBytes.buffer); const actualBytes = await readAll(reader); assertEquals(testBytes, actualBytes);});
Deno.test("readAllSync()", () => { const testBytes = init(); assert(testBytes); const reader = new Buffer(testBytes.buffer); const actualBytes = readAllSync(reader); assertEquals(testBytes, actualBytes);});
std

Version Info

Tagged at
3 weeks ago