mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
17 lines
232 B
Python
17 lines
232 B
Python
|
# TODO: header
|
||
|
|
||
|
#from ansible.playbook.task import Task
|
||
|
import unittest
|
||
|
|
||
|
class TestModArgs(unittest.TestCase):
|
||
|
|
||
|
def setUp(self):
|
||
|
pass
|
||
|
|
||
|
def tearDown(self):
|
||
|
pass
|
||
|
|
||
|
def test_sample(self):
|
||
|
pass
|
||
|
|