nixite/testing/it.nix

12 lines
135 B
Nix
Raw Normal View History

2023-12-31 00:24:48 +00:00
msg: {
actual,
expected,
}:
if actual == expected
then msg
else
throw
(builtins.toJSON {
inherit actual expected msg;
})