summaryrefslogtreecommitdiffstats
path: root/test/local-content/test-roles-failed-complete/roles/role2/test_plugins/b_failed_complete.py
blob: 63f4532afd522b4eb1bab171a3cdd76c3974db2a (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(a, b):
    """Return True when a is contained in b."""
    return a in b


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

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