Work in progress on task loading.

This commit is contained in:
Michael DeHaan 2014-10-06 16:29:02 -04:00
parent 1556b0384f
commit e66a0096a7
6 changed files with 36 additions and 22 deletions

View file

@ -32,7 +32,7 @@ class TestTask(unittest.TestCase):
t = Task.load(basic_shell_task)
assert t is not None
assert t.name == basic_shell_task['name']
assert t.module == 'shell'
assert t.action == 'shell'
assert t.args == 'echo hi'
def test_can_load_action_kv_form(self):