Testing Delete Operation
Learn how to test Delete operation in Elixir
We'll cover the following...
We'll cover the following...
The delete function
Our last function, delete/1, is simple to test, as the code is a straight pass-through to Repo.delete/1.
Let’s look at the function:
Tests
We’ll only test the success path for this function ...