nativity/lib/std/testing.nat
2024-03-14 10:27:48 -06:00

11 lines
154 B
Plaintext

const Error = error{
unexpected_result,
};
const expect = fn (ok: bool) Error!void {
if (!ok) {
return Error.unexpected_result;
}
}