Removed non-testing suggestions

Change-Id: I49d1499a240f71c06497fd1eb5afafd871547bb8
This commit is contained in:
Daryl Walleck 2011-10-24 23:24:54 -05:00
parent 3f6c9d5875
commit 49d666e4e5

14
HACKING Normal file
View File

@ -0,0 +1,14 @@
Test Data/Configuration
-----------------------
- Assume nothing about existing test data
- Tests should be self contained (provide their own data)
- Clean up test data at the completion of each test
- Use configuration files for values that will vary by environment
General
-------
- Put two newlines between top-level code (funcs, classes, etc)
- Put one newline between methods in classes and anywhere else
- Do not write "except:", use "except Exception:" at the very least
- Include your name with TODOs as in "#TODO(termie)"
- Do not name anything the same name as a built-in or reserved word