22 lines
351 B
Nix
22 lines
351 B
Nix
|
{
|
||
|
describe,
|
||
|
it,
|
||
|
...
|
||
|
}:
|
||
|
describe "the describe function" [
|
||
|
(it "returns an array with the message changed" {
|
||
|
expected = [
|
||
|
{
|
||
|
success = true;
|
||
|
msg = "the describe function: works";
|
||
|
}
|
||
|
];
|
||
|
actual = describe "the describe function" [
|
||
|
{
|
||
|
success = true;
|
||
|
msg = "works";
|
||
|
}
|
||
|
];
|
||
|
})
|
||
|
]
|