[IMP] Mass rename \t to 4 spaces
[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 import test_expression
12 import test_ir_sequence
13 import test_orm
14 import test_uninstall
15
16 fast_suite = [
17     test_ir_sequence,
18     ]
19
20 checks = [
21     test_expression,
22     test_orm,
23     ]
24
25 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: