std/assert/less_test.ts
Asher Gomez 5803cc9172
BREAKING(assert): remove assert from module names (#5176)
* BREAKING(assert): remove `assert` from module names

* work

* fix

* work

* work

* tweaks

* fix
2024-07-02 13:42:40 +10:00

11 lines
270 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { assertLess, assertThrows } from "./mod.ts";
Deno.test("assertLess", () => {
assertLess(1, 2);
assertLess(1n, 2n);
assertLess(1, 1.1);
assertThrows(() => assertLess(2, 1));
});