1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00
community.general/test/v2/playbook/test_task.py

40 lines
788 B
Python
Raw Normal View History

# TODO: header
from ansible.playbook.task import Task
import unittest
basic_shell_task = dict(
name = 'Test Task',
shell = 'echo hi'
)
class TestTask(unittest.TestCase):
def setUp(self):
pass
def tearDown(self):
pass
2014-10-03 22:37:32 +02:00
def test_can_construct_empty_task(self):
t = Task()
2014-10-03 22:37:32 +02:00
def test_can_construct_task_with_role(self):
pass
2014-10-03 22:37:32 +02:00
def test_can_construct_task_with_block(self):
pass
2014-10-03 22:37:32 +02:00
def test_can_construct_task_with_role_and_block(self):
pass
2014-10-03 22:37:32 +02:00
def test_can_load_simple_task(self):
t = Task.load(basic_shell_task)
2014-10-03 22:37:32 +02:00
assert t is not None
print "NAME=%s" % t.name
assert t.name == basic_shell_task['name']
#assert t.module == 'shell'
#assert t.args == 'echo hi'