document throws, run alejandra

This commit is contained in:
tristan 2024-01-02 11:13:47 +00:00
parent b800bb4695
commit aeb174ac65
9 changed files with 105 additions and 48 deletions

14
mytest.nix Normal file
View 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;
})
]