Django belgeleri ( http://docs.djangoproject.com/en/1.3/topics/testing/#running-tests ), test senaryolarını tek tek belirleyerek çalıştırabileceğinizi söylüyor:
$ ./manage.py test animals.AnimalTestCase
Bu, testlerinizi Django uygulamanızdaki bir tests.py dosyasında yaptığınızı varsayar. Bu doğruysa, bu komut beklendiği gibi çalışır.
Bir test dizininde bir Django uygulaması için benim testleri var:
my_project/apps/my_app/
├── __init__.py
├── tests
│ ├── __init__.py
│ ├── field_tests.py
│ ├── storage_tests.py
├── urls.py
├── utils.py
└── views.py
tests/__init__.py
Dosya bir paketi () işlevi vardır:
import unittest
from my_project.apps.my_app.tests import field_tests, storage_tests
def suite():
tests_loader = unittest.TestLoader().loadTestsFromModule
test_suites = []
test_suites.append(tests_loader(field_tests))
test_suites.append(tests_loader(storage_tests))
return unittest.TestSuite(test_suites)
Testleri yapmak için:
$ ./manage.py test my_app
Tek bir test senaryosu belirtmeye çalışmak bir istisna oluşturur:
$ ./manage.py test my_app.tests.storage_tests.StorageTestCase
...
ValueError: Test label 'my_app.tests.storage_tests.StorageTestCase' should be of the form app.TestCase or app.TestCase.test_method
İstisna mesajının söylediklerini yapmaya çalıştım:
$ ./manage.py test my_app.StorageTestCase
...
ValueError: Test label 'my_app.StorageTestCase' does not refer to a test
Testlerim birden fazla dosyadayken ayrı bir test durumunu nasıl belirleyebilirim?