21 lines
319 B
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;
|
|
};
|
|
})
|
|
])
|
|
]
|