Add the --nombr bootloader option in pykickstart
[pykickstart.git] / tests / commands / authconfig.py
blob5609b40beff9e4c31a940926c4454f4bd550769b
1 import unittest
2 from tests.baseclass import *
4 from pykickstart.errors import *
5 from pykickstart.commands.authconfig import *
7 class FC3_TestCase(CommandTest):
8 command = "authconfig"
10 def runTest(self):
11 # pass
12 self.assert_parse("authconfig")
13 self.assert_parse("authconfig --cheese", "auth --cheese\n")
14 self.assert_parse("authconfig --cracker=CRUNCHY", "auth --cracker=CRUNCHY\n")
15 self.assert_parse("auth")
16 self.assert_parse("auth --cheese", "auth --cheese\n")
17 self.assert_parse("auth --cracker=CRUNCHY", "auth --cracker=CRUNCHY\n")
19 if __name__ == "__main__":
20 unittest.main()