Hi,
I've made a mistake of creating my own User model and am trying to recover.
I've created a south migration that copies my old user models and creates django.contrib.auth.models.User models. To ensure my current users don't get left in the dark, I created a bunch of unittests to ensure everything gets converted appropriately.
So, I need to test the south migration and see if it worked. In order to do that I need to load data of the old User type before the migration runs. How do I do that?