2f7f66248858ded365c9870b849fa1216fe61504
[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_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_orm,
21     test_view_validation,
22 ]
23
24 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: