เอกสาร Django ( http://docs.djangoproject.com/en/1.3/topics/testing/#running-tests ) บอกว่าคุณสามารถเรียกใช้กรณีทดสอบเฉพาะบุคคลได้โดยระบุ:
$ ./manage.py test animals.AnimalTestCase
นี่ถือว่าคุณมีการทดสอบในไฟล์ tests.py ในแอปพลิเคชัน Django ของคุณ หากสิ่งนี้เป็นจริงคำสั่งนี้จะทำงานเหมือนที่คาดไว้
ฉันมีแบบทดสอบสำหรับแอปพลิเคชัน 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
ไฟล์มีห้องสวีท () ฟังก์ชัน:
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
ฉันจะระบุกรณีทดสอบเฉพาะบุคคลได้อย่างไรเมื่อการทดสอบของฉันมีหลายไฟล์?