Skip to content

Commit

Permalink
Test for kickstart scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
adamkankovsky committed Jul 24, 2024
1 parent 48371f1 commit 3184a63
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,12 @@ def test_kickstart_properties(self):
"cmdline",
"vnc"]
assert self.interface.KickstartCommands == commands
assert self.interface.KickstartSections == []
sections = ['pre',
'pre-install',
'post',
'onerror',
'traceback']
assert self.interface.KickstartSections == sections
assert self.interface.KickstartAddons == []

def _test_kickstart(self, ks_in, ks_out):
Expand Down

0 comments on commit 3184a63

Please sign in to comment.