summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-doc/collections/ansible_collections/testns/testcol/plugins/modules/fakemodule.py
blob: 6d18c08767d3dfc12fd096752f7f4f4410429197 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
#!/usr/bin/python
from __future__ import (absolute_import, division, print_function)
__metaclass__ = type


DOCUMENTATION = """
    module: fakemodule
    short_desciption: fake module
    description:
        - this is a fake module
    version_added: 1.0.0
    options:
        _notreal:
            description:  really not a real option
    author:
        - me
"""

import json


def main():
    print(json.dumps(dict(changed=False, source='testns.testcol.fakemodule')))


if __name__ == '__main__':
    main()