tix/mytest.nix

15 lines
233 B
Nix

{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;
})
]