[FIX]Resolved traceback on moving to the previous record from serial numbers in Trace...
[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_acl
12 import test_basecase
13 import test_db_cursor
14 import test_expression
15 import test_fields
16 import test_ir_filters
17 import test_ir_sequence
18 import test_mail
19 import test_misc
20 import test_orm
21 import test_osv
22 import test_translate
23 import test_uninstall
24 import test_view_validation
25
26 fast_suite = [
27     test_ir_sequence,
28     test_ir_filters
29 ]
30
31 checks = [
32     test_acl,
33     test_expression,
34     test_mail,
35     test_db_cursor,
36     test_orm,
37     test_fields,
38     test_basecase,
39     test_view_validation,
40     test_misc,
41     test_osv,
42     test_translate,
43 ]
44  
45 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: