doc/book/en/development/testing.rst
branchstable
changeset 5186 f3c2cb460ad9
parent 5150 7a9e71ee5671
child 5229 67dbd07a05f3
--- a/doc/book/en/development/testing.rst	Thu Apr 08 12:32:09 2010 +0200
+++ b/doc/book/en/development/testing.rst	Thu Apr 08 12:42:47 2010 +0200
@@ -24,6 +24,10 @@
 In most of the cases, you will inherit `EnvBasedTC` to write Unittest or
 functional tests for your entities, views, hooks, etc...
 
+XXX pytestconf.py & options (e.g --source to use a different db
+backend than sqlite)
+
+
 Managing connections or users
 +++++++++++++++++++++++++++++
 
@@ -33,10 +37,12 @@
 
 By default, tests run with a user with admin privileges. This
 user/connection must never be closed.
-qwq
-Before a self.login, one has to release the connection pool in use with a self.commit, self.rollback or self.close.
 
-When one is logged in as a normal user and wants to switch back to the admin user, one has to use self.restore_connection().
+Before a self.login, one has to release the connection pool in use
+with a self.commit, self.rollback or self.close.
+
+When one is logged in as a normal user and wants to switch back to the
+admin user, one has to use self.restore_connection().
 
 Usually it looks like this: