1from __future__ import absolute_import, division, print_function
2__metaclass__ = type
3
4from .....plugins.modules.hello import say_hello
5
6
7def test_say_hello():
8    assert say_hello('Ansibull') == dict(message='Hello Ansibull')
9