[Answer]-Users not created correctly in Django test case

1👍

The user is not being created, because the setup method is not being run. It should be called setUp – note the upper-case U. See the Python documentation.

Leave a comment