Django - Testing Django Applications
Identify the error in this Django form test snippet:
Why might
form = MyForm() form.is_valid() print(form.errors)
Why might
form.errors always be empty here?