Here is a really good django application testing guide :
Django testing guide
And the application in the github application splits tests into forms, views, and models into separate files, so this is probably a good example for you.
, __init__.py:
from polls.tests.forms import *
from polls.tests.models import *
from polls.tests.views import *