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

28 lines
827 B
TypeScript

// Copyright 2018-2024 the Deno authors. All rights reserved. MIT license.
import { AssertionError, assertNotMatch, assertThrows } from "./mod.ts";
Deno.test("assertNotMatch()", () => {
assertNotMatch("foobar.deno.com", RegExp(/[a-zA-Z]+@[a-zA-Z]+.com/));
});
Deno.test("assertNotMatch() throws", () => {
assertThrows(
() => assertNotMatch("Denosaurus from Jurassic", RegExp(/from/)),
AssertionError,
`Expected actual: "Denosaurus from Jurassic" to not match: "/from/".`,
);
});
Deno.test("assertNotMatch() throws with custom message", () => {
assertThrows(
() =>
assertNotMatch(
"Denosaurus from Jurassic",
RegExp(/from/),
"CUSTOM MESSAGE",
),
AssertionError,
`Expected actual: "Denosaurus from Jurassic" to not match: "/from/": CUSTOM MESSAGE`,
);
});