6
앱에 tests 디렉토리가있을 때 Django에서 특정 테스트 케이스 실행
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 │ ├── …
165
python
django
unit-testing