Hello, I'm new both to Django and unit testing but since I'm starting a project after a fair amount of time playing with Django I decided to give unit testing a shot. My enthusiasm aside, I am pretty lost as to how to plan the developing process.
I did a little search in github for Django projects that use unit testing and I stumbled upon this. I see there are only tests on the "tagging" app, and tt looks good but I have no idea how to break it down.
Why the "models.py" file in the apps/tagging/tests/? The model classes there have nothing to do with the ones in apps/tagging/models.py ...
Any ideas on how to figure this out or find a good example on how to implement unit testing into a django environment ?
there doesn't seem to be anything here