www.question-defense.com | Login/Register
Translate to English Übersetzen Sie zum Deutsch/German Переведите к русскому/Russian Μεταφράστε στα ελληνικά/Greek Vertaal aan het Nederlands/Dutch ترجمة الى العربية/Arabic 中文翻译/Chinese Traditional 中文翻译/Chinese Simplified 한국어에게 번역하십시오/Korean 日本語に翻訳しなさい /Japanese Traduza ao Português/Portuguese Traduca ad Italiano/Italian Traduisez au Français/French Traduzca al Español/Spanish

Posts Tagged “unittest”

Having a framework to automatically run all of your unit tests is important, but in a strongly dynamic language like Python, it can be difficult to find all of the tests to run in a batch.

[nose][] makes the whole process much easier, by automatically finding all modules containing unittest.TestCase subclasses, allowing nonsubclassed simple test functions, and generally providing a strong framework for easing your testing needs. Plus, it’s less magical than [py.test][].

[nose]: http://www.somethingaboutorange.com/mrl/projects/nose (nose: a discovery-based unittest extension)
[py.test]: http://codespeak.net/py/dist/test.html (a framework to perform python testing)

Tags: , ,

Comments No Comments »