12 lines
224 B
Nix
12 lines
224 B
Nix
|
{ it, ... }:
|
||
|
[
|
||
|
(it "test's itself???" rec {
|
||
|
expected = {success = true; msg = "test's itself???";};
|
||
|
actual =
|
||
|
(it "test's itself???" {
|
||
|
expected = expected;
|
||
|
actual = expected;
|
||
|
});
|
||
|
})
|
||
|
]
|