odoo/addons/base_module_quality
Launchpad Translations on behalf of openerp 6468fc876a Launchpad automatic translations update.
bzr revid: launchpad_translations_on_behalf_of_openerp-20120301051917-fmqwoejs3938qms6
bzr revid: launchpad_translations_on_behalf_of_openerp-20120302052441-nwqd0nqf2gjd8ucn
bzr revid: launchpad_translations_on_behalf_of_openerp-20120303055455-mns5t3fuy78a9r66
bzr revid: launchpad_translations_on_behalf_of_openerp-20120304052145-yqor18r71d7fqmar
bzr revid: launchpad_translations_on_behalf_of_openerp-20120305051123-0j4vr09l95yo2fj5
bzr revid: launchpad_translations_on_behalf_of_openerp-20120229053027-ifd6ef34ebmox67l
bzr revid: launchpad_translations_on_behalf_of_openerp-20120305051129-fcwena1g6pvrc9y5
2012-03-05 05:11:29 +00:00
..
document [ADD] add base_module_quality module 2009-07-03 10:50:40 +05:30
i18n Launchpad automatic translations update. 2012-03-05 05:11:29 +00:00
method_test [FIX]module_quality: trivial logging, multi-addons paths, Fix exceptions, use separate db cursors. 2010-09-07 15:20:55 +05:30
object_test [FIX] Change the year of the copyright 2010-01-12 10:18:39 +01:00
pep8_test [IMP] base_module_quality 2010-06-24 12:43:42 +05:30
pylint_test [IMP]: Removed unused variables and import statements. Removed '\r' escape sequences from translation files. 2010-09-08 17:55:15 +05:30
security [IMP] Security Rule: removed duplicates due to inheritancies of groups 2011-12-12 19:11:13 +01:00
speed_test [IMP] : base_module_quality, crm, email_template, mail_gateway, sale_crm, share: string formatting 2011-03-08 16:52:08 +05:30
structure_test [CLEAN]: Removed commented codes, unnecessary spaces. 2010-08-19 17:21:57 +05:30
terp_test [IMP] base_module_quality 2010-06-24 12:43:42 +05:30
unit_test [REF] copyrights: Replaced 'GNU General Public License' with 'GNU Affero General Public License' 2010-10-28 12:24:18 +05:30
wizard [FIX] Quality_module: Fix error on installation 2011-09-07 15:32:16 +05:30
workflow_test [FIX] base_module_quality: log, fix workflow test 2010-09-03 00:04:51 +03:00
README.txt [ADD] add base_module_quality module 2009-07-03 10:50:40 +05:30
__init__.py [FIX] Change the year of the copyright 2010-01-12 10:18:39 +01:00
__openerp__.py [IMP] manifest: renamed active to auto_install. 2012-01-30 11:18:37 +01:00
base_module_quality.py [MERGE] old wizard interface into new osv_memory for base module_quality 2011-10-19 15:54:37 +02:00
base_module_quality_view.xml [REM] base_module_quality: nonsensical attributes on module.quality.detail list view 2012-02-13 10:52:45 +01:00

README.txt

This module provide a generic framework to define your own quality test. 


All you have to do is to:
* create a folder with your test in 'base_module_quality' (e.g: mkdir base_module_quality\mytest)
* create a .py file in it with same name as the folder you just created (e.g: touch base_module_quality\mytest\mytest.py)
* edit your file and define a class 'quality_check' that 
    * inherits the class 'abstract_quality_test' (defined in base_module_quality.py) 
    * implements the __init__() method accordingly to what you want to test.