English 中文(简体)
如何对Django单元进行测试,以向数据库承诺/提供数据
原标题:How to get Django unittest to commit/save data to the database

I I jan jan

  1. looking at the db in the django admin through runserver
  2. looking in the db manually.

这两项工作都不奏效,因为单位测试的吨位投放了交易,它操纵了试验的 d子。

明显的解决办法似乎只是说单位不使用交易,或让交易做些什么。 另一种方式是建立一个海关环境档案,让经营者能够连接交易。 但是,第一种想法似乎似乎真的容易。 任何想法? I m using MySQL & django 1.3.1

最佳回答

考虑使用Transaction/Case 作为测试案件的上级类别而不是<代码> 测试Case。 测试项目 不要使用<代码> 试验的交易行为,这样你就可以在需要检查数据库状态时作出承诺。

此外,如果你的单位测试如此之大,你在运行期间需要检查其数据库状况,那么你很可能这样做是错误的。 单位检验应只检验一件事和一件事,而且应该非常清楚国家处于什么位置。 见Carly Meyer s Pycon 2012上的演讲:测试,就编写好的单位测试提供一些出色的咨询意见。

问题回答

暂无回答




相关问题
Can Django models use MySQL functions?

Is there a way to force Django models to pass a field to a MySQL function every time the model data is read or loaded? To clarify what I mean in SQL, I want the Django model to produce something like ...

An enterprise scheduler for python (like quartz)

I am looking for an enterprise tasks scheduler for python, like quartz is for Java. Requirements: Persistent: if the process restarts or the machine restarts, then all the jobs must stay there and ...

How to remove unique, then duplicate dictionaries in a list?

Given the following list that contains some duplicate and some unique dictionaries, what is the best method to remove unique dictionaries first, then reduce the duplicate dictionaries to single ...

What is suggested seed value to use with random.seed()?

Simple enough question: I m using python random module to generate random integers. I want to know what is the suggested value to use with the random.seed() function? Currently I am letting this ...

How can I make the PyDev editor selectively ignore errors?

I m using PyDev under Eclipse to write some Jython code. I ve got numerous instances where I need to do something like this: import com.work.project.component.client.Interface.ISubInterface as ...

How do I profile `paster serve` s startup time?

Python s paster serve app.ini is taking longer than I would like to be ready for the first request. I know how to profile requests with middleware, but how do I profile the initialization time? I ...

Pragmatically adding give-aways/freebies to an online store

Our business currently has an online store and recently we ve been offering free specials to our customers. Right now, we simply display the special and give the buyer a notice stating we will add the ...

Converting Dictionary to List? [duplicate]

I m trying to convert a Python dictionary into a Python list, in order to perform some calculations. #My dictionary dict = {} dict[ Capital ]="London" dict[ Food ]="Fish&Chips" dict[ 2012 ]="...

热门标签