use describe in docs
This commit is contained in:
parent
32a3950d16
commit
44e647cac0
|
@ -8,8 +8,8 @@ Test your Nix is only ticks.
|
|||
Make a test file:
|
||||
|
||||
```mytest.nix
|
||||
{ it, ... }:
|
||||
[
|
||||
{ describe, it, ... }:
|
||||
describe "what I'm testing" [
|
||||
(it "can add numbers" {
|
||||
actual = 2 + 2;
|
||||
expected = 4;
|
||||
|
|
11
mytest.nix
11
mytest.nix
|
@ -1,4 +1,9 @@
|
|||
{it, ...}: [
|
||||
{
|
||||
describe,
|
||||
it,
|
||||
...
|
||||
}:
|
||||
describe "what I'm testing" [
|
||||
(it "can add numbers" {
|
||||
actual = 2 + 2;
|
||||
expected = 4;
|
||||
|
@ -7,8 +12,8 @@
|
|||
actual = 2 + 2;
|
||||
expected = 5;
|
||||
})
|
||||
(it "won't throw a party" {
|
||||
actual = "a party";
|
||||
(it "throws a party" {
|
||||
actual = throw "a party";
|
||||
throws = true;
|
||||
})
|
||||
]
|
||||
|
|
10
tix/it.nix
10
tix/it.nix
|
@ -25,10 +25,12 @@ msg: {
|
|||
else v;
|
||||
|
||||
success =
|
||||
builtins.trace "testing if it ${msg}"
|
||||
( if throws
|
||||
then (builtins.tryEval actual).success == false
|
||||
else (a == e) );
|
||||
builtins.trace "testing if it ${msg}"
|
||||
(
|
||||
if throws
|
||||
then (builtins.tryEval actual).success == false
|
||||
else (a == e)
|
||||
);
|
||||
in
|
||||
{
|
||||
inherit success msg;
|
||||
|
|
Loading…
Reference in a new issue