[IMP] res_partner:add res_partner_address field to res_partner
[odoo/odoo.git] / openerp / tests / __init__.py
1 # -*- coding: utf-8 -*-
2 import unittest2
3
4 import test_orm
5 import test_ir_sequence
6 import test_xmlrpc
7
8 # Explicit declaration list of test sub-modules.
9 suite = [
10     test_xmlrpc, # Creates a database
11     test_ir_sequence, # Assume an existing database
12     test_orm, # Assume an existing database
13     ]
14
15 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: