summaryrefslogtreecommitdiffstats
path: root/test/integration/targets/ansible-test-units/ansible_collections/ns/col/tests/unit/plugins/modules/test_hello.py
blob: 95ee0574faca337ff35b54492b418c3653863c74 (plain)
1
2
3
4
5
6
7
8
from __future__ import absolute_import, division, print_function
__metaclass__ = type

from .....plugins.modules.hello import say_hello


def test_say_hello():
    assert say_hello('Ansibull') == dict(message='Hello Ansibull')