mirror of
https://git.yoctoproject.org/poky
synced 2026-04-22 15:32:14 +02:00
wic: oe-selftest: Add 3 tests of 'wic help' command
Added tests for 'wic test overview', 'wic test plugins' and 'wic test kickstart' commands. (From OE-Core rev: 2009df2aa048bb51b7b3050b69a44fe414c4de9d) Signed-off-by: Ed Bartosh <ed.bartosh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
This commit is contained in:
committed by
Richard Purdie
parent
40764a309d
commit
4862a4c33a
@@ -91,3 +91,15 @@ class Wic(oeSelfTest):
|
||||
def test08_no_command(self):
|
||||
"""Test wic without command"""
|
||||
self.assertEqual(1, runCmd('wic', ignore_status=True).status)
|
||||
|
||||
def test09_help_kickstart(self):
|
||||
"""Test wic help overview"""
|
||||
self.assertEqual(0, runCmd('wic help overview').status)
|
||||
|
||||
def test10_help_plugins(self):
|
||||
"""Test wic help plugins"""
|
||||
self.assertEqual(0, runCmd('wic help plugins').status)
|
||||
|
||||
def test11_help_kickstart(self):
|
||||
"""Test wic help kickstart"""
|
||||
self.assertEqual(0, runCmd('wic help kickstart').status)
|
||||
|
||||
Reference in New Issue
Block a user