std/assert/match_test.ts

29 lines
836 B
TypeScript
Raw Permalink Normal View History

// 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`,
);
});