d3ab62ebc1c492d57721cbc1a40dc9d8ba9e778c
[odoo/odoo.git] / openerp / tests / __init__.py
1 # -*- coding: utf-8 -*-
2 """
3 Tests for the OpenERP library.
4
5 This module groups a few sub-modules containing unittest2 test cases.
6
7 Tests can be explicitely added to the `fast_suite` or `checks` lists or not.
8 See the :ref:`test-framework` section in the :ref:`features` list.
9 """
10
11 from . import test_expression, test_html_sanitize, test_ir_sequence, test_orm,\
12               test_view_validation, test_uninstall
13
14 fast_suite = [
15     test_ir_sequence,
16 ]
17
18 checks = [
19     test_expression,
20     test_html_sanitize,
21     test_orm,
22     test_view_validation,
23 ]
24
25 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: