summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2009-11-23 22:37:55 +0000
committerjortel <devnull@localhost>2009-11-23 22:37:55 +0000
commit405a8e5b265becaf58f8de64cdbd17115153d25b (patch)
treeaefaaba78e9ccd687f1bd13c34203bad8f3a7625 /tests
parent8669749a0d5d5e3b5d8f5d3e2aa08d6bf2d9dfbe (diff)
downloadsuds-405a8e5b265becaf58f8de64cdbd17115153d25b.tar.gz
Add echoIntegerArray to public test for example.
Diffstat (limited to 'tests')
-rw-r--r--tests/public.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/tests/public.py b/tests/public.py
index 9e6fb17..fb9103b 100644
--- a/tests/public.py
+++ b/tests/public.py
@@ -59,6 +59,13 @@ try:
result = client.service.echoFloat(input)
print 'echoFloat() = %s' % result
assert result == input
+ input = [1,2,3,4]
+ # suds 0.3.8+
+ result = client.service.echoIntegerArray(input)
+ print 'echoIntegerArray() = %s' % result
+ # looks like umx package needs an 'encoded' unmarshaller
+ # that respects arrayType="" and creates a python [].
+ # assert result == input
except WebFault, f:
errors += 1
print f