~openerp-community/openerp-tools/erppeek

« back to all changes in this revision

Viewing changes to tests/test_client.py

  • Committer: Florent Xicluna
  • Date: 2015-09-16 19:33:43 UTC
  • mfrom: (306.1.1)
  • Revision ID: git-v1:2bddff37cb46ea54e8822fa68d605196058c0e12
Merge pull request #71 from tinyerp/optional-transport

Show diffs side-by-side

added added

removed removed

Lines of Context:
100
100
    """Test the Client class."""
101
101
    server_version = '6.1'
102
102
    startup_calls = (
103
 
        call(ANY, 'db', ANY, verbose=ANY),
 
103
        call(ANY, 'db', ANY, None, verbose=ANY),
104
104
        'db.server_version',
105
 
        call(ANY, 'db', ANY, verbose=ANY),
106
 
        call(ANY, 'common', ANY, verbose=ANY),
107
 
        call(ANY, 'object', ANY, verbose=ANY),
108
 
        call(ANY, 'report', ANY, verbose=ANY),
109
 
        call(ANY, 'wizard', ANY, verbose=ANY),
 
105
        call(ANY, 'db', ANY, None, verbose=ANY),
 
106
        call(ANY, 'common', ANY, None, verbose=ANY),
 
107
        call(ANY, 'object', ANY, None, verbose=ANY),
 
108
        call(ANY, 'report', ANY, None, verbose=ANY),
 
109
        call(ANY, 'wizard', ANY, None, verbose=ANY),
110
110
        'db.list',
111
111
    )
112
112