Organizing Our Tests using Describe
Explore organizing unit tests in Elixir with ExUnit's describe macro. Understand how grouping tests by function improves readability and maintenance of your test files.
We'll cover the following...
We'll cover the following...
ExUnit ships with some useful functions (and macros) that allow us to organize an individual file in a readable and maintainable way.
As we build more and more complicated tests, we’ll see these organizational tools showing up in our examples. Let’s start by looking at those tools and code examples and how we can use them to ...