~therp-nl/openupgrade-server/7.0-sync_commercial_fields

« back to all changes in this revision

Viewing changes to openerp/addons/base/tests/__init__.py

  • Committer: Stefan Rijnhart
  • Date: 2012-12-20 11:22:47 UTC
  • mfrom: (4588.1.128 trunk)
  • Revision ID: stefan@therp.nl-20121220112247-fzl798juosfy7zt6
[MRG] lp:openobject-server rev. 4716

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
import test_base, test_expression, test_search, test_ir_values, test_menu
 
1
import test_base
 
2
import test_expression
 
3
import test_ir_attachment
 
4
import test_ir_values
 
5
import test_menu
 
6
import test_search
2
7
 
3
8
checks = [
4
9
    test_base,
5
10
    test_expression,
6
 
    test_search,
 
11
    test_ir_attachment,
7
12
    test_ir_values,
8
13
    test_menu,
 
14
    test_search,
9
15
]