summaryrefslogtreecommitdiffstats
path: root/test/local-content/test-roles-failed-complete/roles/role2/test_plugins/b_failed_complete.py
blob: 92bd6e7323ac773af98797fd0b21d09f07215b68 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
"""A test plugin."""
# pylint: disable=invalid-name


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,
        }