[FIX] tests: add missing test

bzr revid: rco@openerp.com-20121015101849-hf7pyxjzkbxd4tgf
This commit is contained in:
Raphael Collet 2012-10-15 12:18:49 +02:00
parent 11051f32e0
commit ae0a437aa6
1 changed files with 2 additions and 1 deletions

View File

@ -9,7 +9,7 @@ See the :ref:`test-framework` section in the :ref:`features` list.
"""
from . import test_expression, test_html_sanitize, test_ir_sequence, test_orm,\
test_view_validation, test_uninstall, test_misc
test_view_validation, test_uninstall, test_misc, test_db_cursor
fast_suite = [
test_ir_sequence,
@ -18,6 +18,7 @@ fast_suite = [
checks = [
test_expression,
test_html_sanitize,
test_db_cursor,
test_orm,
test_view_validation,
test_misc,