La documentazione di Django ( http://docs.djangoproject.com/en/1.3/topics/testing/#running-tests ) afferma che è possibile eseguire singoli casi di test specificandoli:
$ ./manage.py test animals.AnimalTestCase
Questo presuppone che tu abbia i tuoi test in un file tests.py nella tua applicazione Django. Se questo è vero, allora questo comando funziona come previsto.
Ho i miei test per un'applicazione Django in una directory di test:
my_project/apps/my_app/
├── __init__.py
├── tests
│ ├── __init__.py
│ ├── field_tests.py
│ ├── storage_tests.py
├── urls.py
├── utils.py
└── views.py
Il tests/__init__.py
file ha una funzione suite ():
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)
Per eseguire i test che faccio:
$ ./manage.py test my_app
Il tentativo di specificare un singolo test case solleva un'eccezione:
$ ./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
Ho provato a fare ciò che diceva il messaggio di eccezione:
$ ./manage.py test my_app.StorageTestCase
...
ValueError: Test label 'my_app.StorageTestCase' does not refer to a test
Come posso specificare un singolo test case quando i miei test sono in più file?