tix/test/it.test.nix

12 lines
224 B
Nix
Raw Normal View History

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