tix/test/it.test.nix

21 lines
319 B
Nix

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