[MERGE] addons 16 survey
[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_basecase, \
13               test_view_validation, test_uninstall, test_misc, test_db_cursor
14
15 fast_suite = [
16     test_ir_sequence,
17 ]
18
19 checks = [
20     test_expression,
21     test_html_sanitize,
22     test_db_cursor,
23     test_orm,
24     test_basecase,
25     test_view_validation,
26     test_misc,
27 ]
28
29 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: