Exercises
Test your knowledge by trying to implement the following:
- Build a test helper for the
View
module. Does it make sense to have test helpers for views? Which parts of the views need to be tested and why? - Update
Goldcrest.ExUnit.ControllerCase.request/4
so that you can pass it a%Plug.Conn{}
struct. This will help us to sendconn
with a specific setup, such as authorization headers or session data.