nixite/testing/it.nix
2023-12-31 00:24:48 +00:00

12 lines
135 B
Nix

msg: {
actual,
expected,
}:
if actual == expected
then msg
else
throw
(builtins.toJSON {
inherit actual expected msg;
})