summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorjortel <devnull@localhost>2008-12-04 15:35:26 +0000
committerjortel <devnull@localhost>2008-12-04 15:35:26 +0000
commit11fa371d8ffa1ace33735ab802e71b6d3c34b724 (patch)
treea8b37569f5bb7a1509871761afe4130e1a55e143 /tests
parent06dc08ab2ff75fc31243d7cadfdd8fb39483f94d (diff)
downloadsuds-11fa371d8ffa1ace33735ab802e71b6d3c34b724.tar.gz
add http://lyricwiki.org/server.php?wsdl to public test
Diffstat (limited to 'tests')
-rw-r--r--tests/public.py15
1 files changed, 15 insertions, 0 deletions
diff --git a/tests/public.py b/tests/public.py
index 4ee40a3..399c053 100644
--- a/tests/public.py
+++ b/tests/public.py
@@ -105,6 +105,21 @@ except Exception, e:
tb.print_exc()
try:
+ url = 'http://lyricwiki.org/server.php?wsdl'
+ start(url)
+ client = Client(url)
+ print client
+ print client.service.getArtist("U2")
+except WebFault, f:
+ errors += 1
+ print f
+ print f.fault
+except Exception, e:
+ errors += 1
+ print e
+ tb.print_exc()
+
+try:
url = 'http://www.zenfolio.com/zf/api/zfapi.asmx?wsdl'
start(url)
client = Client(url)