tix/test/it.test.nix
2024-01-03 10:14:28 +00:00

19 lines
287 B
Nix

{
it,
describe,
...
}: [
(describe "it" [
(it "test's itself???" rec {
expected = {
success = true;
msg = "test's itself???";
};
actual = it "test's itself???" {
expected = expected;
actual = expected;
};
})
])
]