Esempio n. 1
0
 def test_print_par_task(self):
     run_handler('par.yaml', DotfileHandler())
Esempio n. 2
0
 def test_print_switch_task(self):
     run_handler('switch.yaml', DotfileHandler())
Esempio n. 3
0
 def test_comprehensive_example(self):
     run_handler('datetime.yaml', ExecutionHandler())
Esempio n. 4
0
 def test_print_for_task(self):
     run_handler('for_with_variable.yaml', DotfileHandler())
Esempio n. 5
0
 def test_python_func(self):
     run_handler('python_funcs.yaml', ExecutionHandler())
Esempio n. 6
0
 def test_bad_python_func(self):
     with self.assertRaises(ExecutionError):
         run_handler('bad_python_func.yaml', ExecutionHandler())
Esempio n. 7
0
 def test_switch_task(self):
     run_handler('switch.yaml', ExecutionHandler())
Esempio n. 8
0
 def test_var4_task(self):
     run_handler('var4.yaml', ExecutionHandler())
Esempio n. 9
0
 def test_for_task(self):
     run_handler('for.yaml', ExecutionHandler())
Esempio n. 10
0
 def test_csip_task(self):
     run_handler('csip.yaml', ExecutionHandler())
Esempio n. 11
0
 def test_inline_bash_task(self):
     run_handler('bash-inline.yaml', ExecutionHandler())
Esempio n. 12
0
 def test_simple_python(self):
     run_handler('python.yaml', ExecutionHandler())
Esempio n. 13
0
 def test_imports_example(self):
     run_handler('imports.yaml', ExecutionHandler())