Django文档(http://docs.djangoproject.com/en/1.3/topics/testing/#running-tests)说你可以通过指定来运行单独的测试用例:
$ ./manage.py test animals.AnimalTestCase
这里假设你在Django应用程序的tests.py文件中有测试。如果这是真的,那么这个命令就像预期的那样工作。
我在tests目录下有一个Django应用程序的测试:
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文件有一个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)
要运行我所做的测试:
$ ./manage.py test my_app
试图指定一个单独的测试用例会引发一个异常:
$ ./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
我试图做异常消息说:
$ ./manage.py test my_app.StorageTestCase
...
ValueError: Test label 'my_app.StorageTestCase' does not refer to a test
当我的测试在多个文件中时,如何指定单个测试用例?