summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/plugin_namespace/test_plugins/test_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'test/integration/targets/plugin_namespace/test_plugins/test_test.py')
-rw-r--r--test/integration/targets/plugin_namespace/test_plugins/test_test.py16
1 files changed, 16 insertions, 0 deletions
diff --git a/test/integration/targets/plugin_namespace/test_plugins/test_test.py b/test/integration/targets/plugin_namespace/test_plugins/test_test.py
new file mode 100644
index 0000000..2a9d6ee
--- /dev/null
+++ b/test/integration/targets/plugin_namespace/test_plugins/test_test.py
@@ -0,0 +1,16 @@
+from __future__ import (absolute_import, division, print_function)
+__metaclass__ = type
+
+import re
+
+
+def test_name_ok(value):
+ # test names are prefixed with a unique hash value to prevent shadowing of other plugins
+ return bool(re.match(r'^ansible\.plugins\.test\.[0-9]+_test_test$', __name__))
+
+
+class TestModule:
+ def tests(self):
+ return {
+ 'test_name_ok': test_name_ok,
+ }