What approach(es) have you used for lightweight Python unit-tests on App Engine?

后端 未结 6 1961
借酒劲吻你
借酒劲吻你 2021-01-30 02:16

I\'m about to embark on some large Python-based App Engine projects, and I think I should check with Stack Overflow\'s \"wisdom of crowds\" before committing to a unit-testing s

6条回答
  •  渐次进展
    2021-01-30 03:06

    I use GAEUnit for my Google App Engine App and I am quite happy with the speed of the tests. The thing that I like about GAEUnit,and I am sure Webtest does it, is that it creates its own version for stubs of everything for testing leaving your "live" versions alone for testing.

    So your datastore that you may be using for development will be left as is when you run your GAETests.

提交回复
热议问题