summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/plugin_namespace/test_plugins/test_test.py
blob: 2a9d6ee079341c8ca24f955fad38d8e72f826b87 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
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,
        }