forked from ungleich-public/cdist
begin to test explorer success in test_install
Signed-off-by: Nico Schottelius <nico@kr.ethz.ch>
This commit is contained in:
parent
f5a58f7683
commit
13ed37a4e9
2 changed files with 17 additions and 3 deletions
|
|
@ -43,6 +43,18 @@ class Install(unittest.TestCase):
|
|||
exec_path=cdist_exec_path)
|
||||
self.config.link_emulator()
|
||||
|
||||
### NEW FOR INSTALL ############################################################
|
||||
|
||||
def test_explorer_ran(self):
|
||||
"""Check that all explorers returned a result"""
|
||||
self.config.run_global_explores()
|
||||
explorers = self.config.path.list_global_explorers()
|
||||
|
||||
for explorer in explorers:
|
||||
output = self.path.global_explorer_output_path(explorer)
|
||||
self.assertTrue(os.path.isfile(output))
|
||||
|
||||
### OLD FROM CONFIG ############################################################
|
||||
def test_initial_manifest_different_parameter(self):
|
||||
manifest_fd = open(self.init_manifest, "w")
|
||||
manifest_fd.writelines(["#!/bin/sh\n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue