XML-RPC signature change

This commit is contained in:
Jason Gerard DeRose
2010-03-30 15:10:58 -04:00
committed by Rob Crittenden
parent 09d3a6b910
commit 918721c1d0
4 changed files with 7 additions and 10 deletions
+2 -4
View File
@@ -79,10 +79,8 @@ def test_params_2_args_options():
args = ('Hello', u'world!')
options = dict(one=1, two=u'Two', three='Three')
assert f(tuple()) == (tuple(), dict())
assert f(args) == (args, dict())
assert f((options,)) == (tuple(), options)
assert f(args + (options,)) == (args, options)
assert f((options,) + args) == ((options,) + args, dict())
assert f([args]) == (args, dict())
assert f([args, options]) == (args, options)
class test_session(object):