Introduction to Ecto
Get to know the boundaries of your code that need to be tested while using Ecto.
We'll cover the following...
Ecto
As Elixir matures, the community is settling on certain libraries as the go-to libraries for certain use cases.
Let’s look at the two most common use cases of Ecto:
- Validation
- Database interactions
During our journey through testing Ecto, we’ll start by testing it as a validation library and as a database schema. Then we’ll move on to testing our database interactions. ...