2 from tests
.baseclass
import *
4 from pykickstart
.errors
import *
5 from pykickstart
.commands
.authconfig
import *
7 class FC3_TestCase(CommandTest
):
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__":