1from __future__ import absolute_import, division, print_function
2__metaclass__ = type
3
4from .....plugins.module_utils.my_util import hello
5
6
7def test_hello():
8    assert hello('Ansibull') == 'Hello Ansibull'
9