We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c87acd1 commit 0868751Copy full SHA for 0868751
1 file changed
tests/test_client.py
@@ -52,6 +52,11 @@ def test_service_proxy_non_existing():
52
assert client_obj.service.NonExisting
53
54
55
+def test_context_manager():
56
+ with client.Client("tests/wsdl_files/soap.wsdl") as client:
57
+ assert client
58
+
59
60
def test_service_proxy_dir_operations():
61
client_obj = client.Client("tests/wsdl_files/soap.wsdl")
62
operations = [op for op in dir(client_obj.service) if not op.startswith("_")]
0 commit comments