aboutsummaryrefslogtreecommitdiff
path: root/tests/unit/test_client_options.py
diff options
context:
space:
mode:
authorDov Shlachter <dovs@google.com>2019-11-19 15:17:46 -0800
committerGitHub <noreply@github.com>2019-11-19 15:17:46 -0800
commitb6cea3c2d4e2d1a35af5246a88a87133bb5eada5 (patch)
tree83d333a8596323ababdedba3cd315b31866b5c96 /tests/unit/test_client_options.py
parent74326f4ef4f6697bad3251330c33c4464b8266f1 (diff)
downloadpython-api-core-b6cea3c2d4e2d1a35af5246a88a87133bb5eada5.tar.gz
Add a repr method for ClientOptions (#9849)
Diffstat (limited to 'tests/unit/test_client_options.py')
-rw-r--r--tests/unit/test_client_options.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/tests/unit/test_client_options.py b/tests/unit/test_client_options.py
index 14cae9f..952adfc 100644
--- a/tests/unit/test_client_options.py
+++ b/tests/unit/test_client_options.py
@@ -34,3 +34,9 @@ def test_from_dict_bad_argument():
client_options.from_dict(
{"api_endpoint": "foo.googleapis.com", "bad_arg": "1234"}
)
+
+
+def test_repr():
+ options = client_options.ClientOptions(api_endpoint="foo.googleapis.com")
+
+ assert repr(options) == "ClientOptions: {'api_endpoint': 'foo.googleapis.com'}"