Rewriting another project from clojure.test to lazytest.
Trying to recall - describe is optional, right? And it isn't? Meaning expect has to be inside of it, but it can be without a parent describe.
yes, describe is a fancier testing
it creates a "test case", a (wrapper around a) function that is executed for its assertions
Alright, thanks!
There's also expect-it for one-shot tests (one assertion per-test) so you can omit the it around the single expect.
Ah, neat!