Testing Delete Operation
Understand how to write and run tests for the delete function in Ecto queries using ExUnit. This lesson guides you through verifying successful deletion and ensuring data integrity in your Elixir application database.
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 ...