From 49d666e4e568c387037b3e88130e07d0f107d351 Mon Sep 17 00:00:00 2001 From: Daryl Walleck Date: Mon, 24 Oct 2011 23:24:54 -0500 Subject: [PATCH] Removed non-testing suggestions Change-Id: I49d1499a240f71c06497fd1eb5afafd871547bb8 --- HACKING | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 HACKING diff --git a/HACKING b/HACKING new file mode 100644 index 0000000000..c2c403bd1d --- /dev/null +++ b/HACKING @@ -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 \ No newline at end of file