diff options
| author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-03-06 22:39:50 +0100 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-03-06 16:39:50 -0500 |
| commit | e36edfdb3fd4709358a5f499f13cfe3d53c2b4f7 (patch) | |
| tree | 1baef3f876a5e75288c3ec9056cdb93dd6b5787f /io/util_test.ts | |
| parent | d29957ad17956016c35a04f5f1f98565e58e8a2e (diff) | |
Testing refactor (denoland/deno_std#240)
Original: https://github.com/denoland/deno_std/commit/e1d5c00279132aa639030c6c6d9b4e308bd4775e
Diffstat (limited to 'io/util_test.ts')
| -rw-r--r-- | io/util_test.ts | 15 |
1 files changed, 8 insertions, 7 deletions
diff --git a/io/util_test.ts b/io/util_test.ts index 62cdfe533..2fca41d31 100644 --- a/io/util_test.ts +++ b/io/util_test.ts @@ -1,6 +1,7 @@ // Copyright 2018-2019 the Deno authors. All rights reserved. MIT license. const { remove } = Deno; -import { test, assert } from "../testing/mod.ts"; +import { test } from "../testing/mod.ts"; +import { assert, assertEq } from "../testing/asserts.ts"; import { copyBytes, tempFile } from "./util.ts"; import * as path from "../fs/path.ts"; @@ -11,31 +12,31 @@ test(function testCopyBytes() { let src = Uint8Array.of(1, 2); let len = copyBytes(dst, src, 0); assert(len === 2); - assert.equal(dst, Uint8Array.of(1, 2, 0, 0)); + assertEq(dst, Uint8Array.of(1, 2, 0, 0)); dst.fill(0); src = Uint8Array.of(1, 2); len = copyBytes(dst, src, 1); assert(len === 2); - assert.equal(dst, Uint8Array.of(0, 1, 2, 0)); + assertEq(dst, Uint8Array.of(0, 1, 2, 0)); dst.fill(0); src = Uint8Array.of(1, 2, 3, 4, 5); len = copyBytes(dst, src); assert(len === 4); - assert.equal(dst, Uint8Array.of(1, 2, 3, 4)); + assertEq(dst, Uint8Array.of(1, 2, 3, 4)); dst.fill(0); src = Uint8Array.of(1, 2); len = copyBytes(dst, src, 100); assert(len === 0); - assert.equal(dst, Uint8Array.of(0, 0, 0, 0)); + assertEq(dst, Uint8Array.of(0, 0, 0, 0)); dst.fill(0); src = Uint8Array.of(3, 4); len = copyBytes(dst, src, -2); assert(len === 2); - assert.equal(dst, Uint8Array.of(3, 4, 0, 0)); + assertEq(dst, Uint8Array.of(3, 4, 0, 0)); }); test(async function ioTempfile() { @@ -45,6 +46,6 @@ test(async function ioTempfile() { }); console.log(f.file, f.filepath); const base = path.basename(f.filepath); - assert.assert(!!base.match(/^prefix-.+?-postfix$/)); + assert(!!base.match(/^prefix-.+?-postfix$/)); await remove(f.filepath); }); |
