summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/collections/collection_root_user/ansible_collections/testns/testcoll/plugins/test/test_subdir/my_subdir_tests.py
blob: 98a8f893f1b5957caa4851894d9b01c3ce500952 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type


def subdir_test(data):
    return data == 'subdir_from_user'


class TestModule(object):
    def tests(self):
        return {
            'subdir_test': subdir_test
        }