document throws, run alejandra
This commit is contained in:
parent
b800bb4695
commit
aeb174ac65
9 changed files with 105 additions and 48 deletions
14
mytest.nix
Normal file
14
mytest.nix
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
{it, ...}: [
|
||||
(it "can add numbers" {
|
||||
actual = 2 + 2;
|
||||
expected = 4;
|
||||
})
|
||||
(it "loves big brother" {
|
||||
actual = 2 + 2;
|
||||
expected = 5;
|
||||
})
|
||||
(it "won't throw a party" {
|
||||
actual = "a party";
|
||||
throws = true;
|
||||
})
|
||||
]
|
||||
Loading…
Add table
Add a link
Reference in a new issue