I am creating unittests for Django and using coverage and the wsgi.py file sticks out like a sore thumb with 0% coverage.
When creating unittests, should I create one for the wsgi.py file?
What would be the best way to do this using the standard Django test facility?
wsgi.py code:
import os
from django.core.wsgi import get_wsgi_application
from django.contrib.staticfiles.handlers import StaticFilesHandler
os.environ.setdefault("DJANGO_SETTINGS_MODULE", "ebdjango.settings")
application = StaticFilesHandler(get_wsgi_application())