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