Testing Elixir: Minor setup innaccuracy (page 12)

This is a pretty minor erratum, but I feel the need to point out that on page 12, the book states:

Your setups can build on top of each other…the setup in your describe can accept values passed to it from the higher-up describe

Although the meaning is pretty clear, we were told on page 10 that nested describe blocks are disallowed.

Solution

The text should read something like:

…the setup in your describe can accept values passed to it from the setup block at the top level of the module…

Or something to that effect.