Changes between Version 42 and Version 43 of DeveloperGuidelinesTesting
- Timestamp:
- 01/11/09 21:43:01 (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelinesTesting
v42 v43 19 19 == Unit Tests (must do) == 20 20 Building the Code Right 21 * http://diveintopython.org/unit_testing/index.html22 These should be written by the developers23 21 * [http://www.python.org/doc/2.6/library/doctest.html DocTest] - inline with code: Agile Documentation 24 22 * http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-2-doctest.html … … 27 25 * [http://docs.python.org/library/unittest.html UnitTest] (formerly [http://pyunit.sourceforge.net PyUnit]) 28 26 * http://agiletesting.blogspot.com/2005/01/python-unit-testing-part-1-unittest.html 27 * http://diveintopython.org/unit_testing/index.html 29 28 * [http://somethingaboutorange.com/mrl/projects/nose/ Nose] - a discovery-based unittest extension 30 29