From b6cea3c2d4e2d1a35af5246a88a87133bb5eada5 Mon Sep 17 00:00:00 2001 From: Dov Shlachter Date: Tue, 19 Nov 2019 15:17:46 -0800 Subject: Add a repr method for ClientOptions (#9849) --- google/api_core/client_options.py | 3 +++ tests/unit/test_client_options.py | 6 ++++++ 2 files changed, 9 insertions(+) diff --git a/google/api_core/client_options.py b/google/api_core/client_options.py index 1144d2f..137043f 100644 --- a/google/api_core/client_options.py +++ b/google/api_core/client_options.py @@ -50,6 +50,9 @@ class ClientOptions(object): def __init__(self, api_endpoint=None): self.api_endpoint = api_endpoint + def __repr__(self): + return "ClientOptions: " + repr(self.__dict__) + def from_dict(options): """Construct a client options object from a dictionary. 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'}" -- cgit v1.2.3