[ADD] documentation on running tests in OpenERP Web core

bzr revid: xmo@openerp.com-20110321122328-u1u55gbf3rfks2xv
This commit is contained in:
Xavier Morel 2011-03-21 13:23:28 +01:00
parent 698875cc27
commit 562de2d9a9
2 changed files with 24 additions and 1 deletions

View File

@ -50,6 +50,8 @@ Structure
``tests/``
The directories in which all tests for the addon are located.
.. _addons-testing:
Testing
-------

View File

@ -6,4 +6,25 @@ Contributing to OpenERP Web
* QWeb code documentation/description
* Documentation of the OpenERP APIs and choices taken based on that?
* Style guide and coding conventions (PEP8? More)
* Test frameworks for Python and JS?
* Test frameworks in JS?
Testing
-------
Python
++++++
Testing for the OpenERP Web core is similar to :ref:`testing addons
<addons-testing>`: the tests live in ``openerpweb.tests``, unittest2_
is the testing framework and tests can be run via either unittest2
(``unit2 discover``) or via nose_ (``nosetests``).
Tests for the OpenERP Web core can also be run using ``setup.py
test``.
.. _unittest2:
http://www.voidspace.org.uk/python/articles/unittest2.shtml
.. _nose:
http://somethingaboutorange.com/mrl/projects/nose/1.0.0/