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