summaryrefslogtreecommitdiff
path: root/HACKING
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2009-03-08 13:03:02 +1100
committerRobert Collins <robertc@robertcollins.net>2009-03-08 13:03:02 +1100
commit34c91dd7b913bfd9bf8e22772398e1c10e000dcf (patch)
tree67c0a2f67e604d6ed9129cfadd5fceecbdf97ba3 /HACKING
parent86ce5aa1f3b33f73cd73f4628e5b854c3d9a7978 (diff)
downloadtestscenarios-34c91dd7b913bfd9bf8e22772398e1c10e000dcf.tar.gz
Start on TestWithScenarios.
Diffstat (limited to 'HACKING')
-rw-r--r--HACKING8
1 files changed, 8 insertions, 0 deletions
diff --git a/HACKING b/HACKING
index fb1a1bf..d93b90c 100644
--- a/HACKING
+++ b/HACKING
@@ -27,3 +27,11 @@ Coding standards
PEP-8 coding style please, though I'm not nitpicky. Make sure that 'make check'
passes before sending in a patch.
+
+Code arrangement
+++++++++++++++++
+
+The ``testscenarios`` module should simply import classes and functions from
+more specific modules, rather than becoming large and bloated itself. For
+instance, TestWithScenarios lives in testscenarios.testcase, and is imported in
+the testscenarios __init__.py.