Changes between Version 112 and Version 113 of DeveloperGuidelinesTesting
- Timestamp:
- 08/08/11 21:18:56 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
DeveloperGuidelinesTesting
v112 v113 95 95 To make your test look like a test, there are two options: 96 96 97 #easy: write a procedure whose name starts with "test_"98 #advanced: inherit from unittest.TestCase and write your tests as described in [http://docs.python.org/library/unittest.html]97 1. easy: write a procedure whose name starts with "test_" 98 1. advanced: inherit from unittest.TestCase and write your tests as described in [http://docs.python.org/library/unittest.html] 99 99 100 100 {{{