summaryrefslogtreecommitdiffstats
path: root/test/local-content/test-roles-success/roles/role2/test_plugins/b_success.py
blob: 6cf2bae9a2ced22342d9ac1f2e85b8f9c96ae86f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
"""A test plugin."""


def compatibility_in_test(element, container):
    """Return True when element contained in container."""
    return element in container


# pylint: disable=too-few-public-methods
class TestModule:
    """Test plugin."""

    @staticmethod
    def tests():
        """Return tests."""
        return {
            "b_test_success": compatibility_in_test,
        }