tix/test/it.test.nix

21 lines
319 B
Nix
Raw Permalink Normal View History

2024-01-02 13:15:50 +00:00
{
it,
describe,
...
2024-01-03 10:14:28 +00:00
}: [
(describe "it" [
(it "test's itself???" rec {
expected = {
2024-01-03 19:18:54 +00:00
value = {
success = true;
};
name = "test's itself???";
2024-01-03 10:14:28 +00:00
};
actual = it "test's itself???" {
expected = expected;
actual = expected;
};
})
])
2024-01-02 12:44:07 +00:00
]