summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py')
-rw-r--r--test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py b/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py
new file mode 100644
index 0000000..436ceaf
--- /dev/null
+++ b/test/integration/targets/templating_lookups/template_lookups/mock_lookup_plugins/77788.py
@@ -0,0 +1,6 @@
+from ansible.plugins.lookup import LookupBase
+
+
+class LookupModule(LookupBase):
+ def run(self, terms, variables, **kwargs):
+ return {'one': 1, 'two': 2}