add file_size
[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_basecase
12 import test_db_cursor
13 import test_expression
14 import test_fields
15 import test_ir_filters
16 import test_ir_sequence
17 import test_mail
18 import test_misc
19 import test_orm
20 import test_osv
21 import test_translate
22 import test_uninstall
23 import test_view_validation
24
25 fast_suite = [
26     test_ir_sequence,
27     test_ir_filters
28 ]
29
30 checks = [
31     test_expression,
32     test_mail,
33     test_db_cursor,
34     test_orm,
35     test_fields,
36     test_basecase,
37     test_view_validation,
38     test_misc,
39     test_osv,
40     test_translate,
41 ]
42  
43 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: