Validate network interface name when parsing the kickstart (#1081982)
[pykickstart.git] / tests / commands / deviceprobe.py
blobf6092fb1e0bbf98a2d8bed1f7ad689432521ef09
1 # Andy Lindeberg <alindebe@redhat.com>
3 # Copyright 2009 Red Hat, Inc.
5 # This copyrighted material is made available to anyone wishing to use, modify,
6 # copy, or redistribute it subject to the terms and conditions of the GNU
7 # General Public License v.2. This program is distributed in the hope that it
8 # will be useful, but WITHOUT ANY WARRANTY expressed or implied, including the
9 # implied warranties of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
10 # See the GNU General Public License for more details.
12 # You should have received a copy of the GNU General Public License along with
13 # this program; if not, write to the Free Software Foundation, Inc., 51
14 # Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. Any Red Hat
15 # trademarks that are incorporated in the source code or documentation are not
16 # subject to the GNU General Public License and may only be used or replicated
17 # with the express permission of Red Hat, Inc.
20 import unittest, shlex
21 from tests.baseclass import *
23 from pykickstart.errors import *
24 from pykickstart.commands.deviceprobe import *
26 class FC3_TestCase(CommandTest):
27 command = "deviceprobe"
29 def runTest(self):
30 # pass
31 self.assert_parse("deviceprobe")
32 self.assert_parse("deviceprobe --cheese", "deviceprobe --cheese\n")
33 self.assert_parse("deviceprobe --cracker=CRUNCHY", "deviceprobe --cracker=CRUNCHY\n")
35 if __name__ == "__main__":
36 unittest.main()