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

29 lines
836 B
TypeScript

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