Hi everyone, i'm strugling to make $python manage.py test run my doctest. My folder/file strukture is as follows
myproject/myapp/tests.py /my_tests/__init__.py /my_tests/unittst.py /my_tests/doctst.py I am successfully importing/running unittests to test.py, but can't make any doctest to make work:( My file contents are as follows: === tmyapp/test.py contains === <...> from my_tests import doctst import my_tests <...> === /myapp/my_tests/__init__.py ==== import doctst __test__ = { 'My_test': doctst, } === myapp/my_tests/doctst.py === __doc__ = """ >>> print "django" djangoo """ Thanks in advance for any help! --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Django users" group. To post to this group, send email to django-users@googlegroups.com To unsubscribe from this group, send email to django-users+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/django-users?hl=en -~----------~----~----~----~------~----~------~--~---