免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 3529 | 回复: 5
打印 上一主题 下一主题

关于django的单元测试问题,我有点头大了 [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2008-10-07 17:33 |只看该作者 |倒序浏览
刚开始学习单元测试,看了django里面的相关文档就开搞了。
我把tests.py文件放在了app目录里,内容如下:
import unittest
import models
class detailTestCase(unittest.TestCase):
    def setUp(self):
        self.rec_1 = models.detail.objects.create(name="lion", file_name="roar", descript="lala", tags="bavals")
    def display(self):
        self.assertEquals(self.rec_1, u'lion')

然后运行python manage.py test,却发现上面的代码根本就没有执行!到底是什么原因呢?所我遗漏了什么?

论坛徽章:
0
2 [报告]
发表于 2008-10-07 17:59 |只看该作者
加上
if __name__ == "__main__":
    unittest.main()
试试。

论坛徽章:
0
3 [报告]
发表于 2008-10-07 18:31 |只看该作者
不行的if __name__ == "__main__":    unittest.main() 是直接执行的时候才有效的,我通过django的的是框架来就不一样了的。

论坛徽章:
0
4 [报告]
发表于 2008-10-08 09:31 |只看该作者
CPyUGs上的大侠帮我解决了:
原来所有的测试函数都必须以test开头才行

论坛徽章:
0
5 [报告]
发表于 2008-10-08 16:41 |只看该作者
这个东西看起来不错,lz讲讲。

论坛徽章:
0
6 [报告]
发表于 2008-10-09 10:26 |只看该作者
django 支持两种方式的测试: doctest 和unnittest。


下面是关于如何使django执行测试的 原文:

Once you've written tests, run them using your project's manage.py utility:

  1. $ ./manage.py test
复制代码


By default, this will run every test in every application in INSTALLED_APPS. If you only want to run tests for a particular application, add the application name to the command line. For example, if your INSTALLED_APPS contains 'myproject.polls' and 'myproject.animals', you can run the myproject.animals unit tests alone with this command:

  1. $ ./manage.py test animals
复制代码


Note that we used animals, not myproject.animals.

  1. $ ./manage.py test animals. AnimalTestCase
复制代码


其中AnimalTestCase是使用unittest编写的。

详细描述 参考: django 的官方网站 的 关于 testing 主题的链接。
http://docs.djangoproject.com/en ... ting/#running-tests
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP