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
|
||
|
|