diff options
-rw-r--r-- | meta/lib/oeqa/selftest/wic.py | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/wic.py b/meta/lib/oeqa/selftest/wic.py index 5fa190db06..47b70fda2b 100644 --- a/meta/lib/oeqa/selftest/wic.py +++ b/meta/lib/oeqa/selftest/wic.py | |||
@@ -91,3 +91,15 @@ class Wic(oeSelfTest): | |||
91 | def test08_no_command(self): | 91 | def test08_no_command(self): |
92 | """Test wic without command""" | 92 | """Test wic without command""" |
93 | self.assertEqual(1, runCmd('wic', ignore_status=True).status) | 93 | self.assertEqual(1, runCmd('wic', ignore_status=True).status) |
94 | |||
95 | def test09_help_kickstart(self): | ||
96 | """Test wic help overview""" | ||
97 | self.assertEqual(0, runCmd('wic help overview').status) | ||
98 | |||
99 | def test10_help_plugins(self): | ||
100 | """Test wic help plugins""" | ||
101 | self.assertEqual(0, runCmd('wic help plugins').status) | ||
102 | |||
103 | def test11_help_kickstart(self): | ||
104 | """Test wic help kickstart""" | ||
105 | self.assertEqual(0, runCmd('wic help kickstart').status) | ||