tix/test/it.test.nix

18 lines
257 B
Nix
Raw Normal View History

2024-01-02 13:15:50 +00:00
{
it,
describe,
...
}:
describe "it" [
2024-01-02 12:44:07 +00:00
(it "test's itself???" rec {
2024-01-02 13:15:50 +00:00
expected = {
success = true;
msg = "test's itself???";
};
actual = it "test's itself???" {
expected = expected;
actual = expected;
};
2024-01-02 12:44:07 +00:00
})
]