如何将 Django 应用程序测试拆分到多个文件中
我正在开发 Django 1.2 应用程序,并且我是该框架的初学者。我想将应用程序的测试分成几个文件 https://github.com/ vkhemlan/BolsaTrabajo/tree/master/bolsa_trabajo,我该怎么做?我需要进行哪些配置?
I'm working on a Django 1.2 app and I'm a kind of beginner with the framework. I want to split my tests in several files for the app https://github.com/vkhemlan/BolsaTrabajo/tree/master/bolsa_trabajo, how I can do that? What configurations do I have to do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个关于测试 django 应用程序的非常好的指南:
Django 测试指南
和示例应用程序github 将表单、视图和模型的测试拆分为单独的文件,因此这对您来说可能是一个很好的示例。
请注意每个测试模块是如何导入到
__init__.py
中的:Here's a really good guide on testing django apps:
A Guide to Testing in Django
And the example app on github splits the tests for forms, views and models into separate files, so it is probably a good example for you.
Note how each test module gets imported in
__init__.py
: