Skip to content

Commit cf004f8

Browse files
add cmem base uri to testing system context
1 parent 43060a4 commit cf004f8

1 file changed

Lines changed: 5 additions & 0 deletions

File tree

cmem_plugin_base/testing.py

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,11 +99,16 @@ class TestSystemContext(SystemContext):
9999

100100
def __init__(self) -> None:
101101
self._version: str = "1.0.0"
102+
self._cmem_base_uri: str = "https://docker.localhost"
102103

103104
def di_version(self) -> str:
104105
"""Get data integration version."""
105106
return self._version
106107

108+
def cmem_base_uri(self) -> str:
109+
"""Get data integration base URI."""
110+
return self._cmem_base_uri
111+
107112
def encrypt(self, value: str) -> str:
108113
"""Encrypt a value."""
109114
return value

0 commit comments

Comments
 (0)