std/assert/less_or_equal_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

10 lines
283 B
TypeScript

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