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