From ce59699967ac90098bd811e82ce2a7f359da172a Mon Sep 17 00:00:00 2001 From: LennartAtExasol Date: Tue, 23 Mar 2021 11:11:06 +0100 Subject: [PATCH] add imports to code examples --- README.md | 6 ++++++ README.rst | 8 +++++++- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f8ab2bc..8838f9d 100644 --- a/README.md +++ b/README.md @@ -42,6 +42,12 @@ The following example shows, how you use this framework: The following example shows the general setup for a test with the Mock: ``` +from exasol_udf_mock_python.udf_mock_executor import UDFMockExecutor +from exasol_udf_mock_python.mock_meta_data import MockMetaData +from exasol_udf_mock_python.column import Column +from exasol_udf_mock_python.mock_exa_environment import MockExaEnvironment +from exasol_udf_mock_python.group import Group + def udf_wrapper(): def run(ctx): diff --git a/README.rst b/README.rst index 80adb6a..269208d 100644 --- a/README.rst +++ b/README.rst @@ -50,7 +50,13 @@ The following example shows, how you use this framework: The following example shows the general setup for a test with the Mock: .. code-block:: - + from exasol_udf_mock_python.udf_mock_executor import UDFMockExecutor + from exasol_udf_mock_python.mock_meta_data import MockMetaData + from exasol_udf_mock_python.column import Column + from exasol_udf_mock_python.mock_exa_environment import MockExaEnvironment + from exasol_udf_mock_python.group import Group + + def udf_wrapper(): def run(ctx):