Launchpad automatic translations update.
[odoo/odoo.git] / addons / base_module_quality / README.txt
1 This module provide a generic framework to define your own quality test. 
2
3
4 All you have to do is to:
5 * create a folder with your test in 'base_module_quality' (e.g: mkdir base_module_quality\mytest)
6 * create a .py file in it with same name as the folder you just created (e.g: touch base_module_quality\mytest\mytest.py)
7 * edit your file and define a class 'quality_check' that 
8     * inherits the class 'abstract_quality_test' (defined in base_module_quality.py) 
9     * implements the __init__() method accordingly to what you want to test.
10
11