Add the --nombr bootloader option in pykickstart
[pykickstart.git] / tests / commands / mediacheck.py
blob0b1a20e10bf0e37acd7f688cb5826a2c515a8abb
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
21 from tests.baseclass import *
23 from pykickstart.errors import *
24 from pykickstart.commands.mediacheck import *
26 class FC4_TestCase(CommandTest):
27 command = "mediacheck"
29 def runTest(self):
30 # pass
31 self.assert_parse("mediacheck", "mediacheck\n")
33 # fail
34 self.assert_parse_error("mediacheck --cheese", KickstartParseError)
35 self.assert_parse_error("mediacheck --crackers=CRUNCHY", KickstartParseError)
36 self.assert_parse_error("mediacheck cheese crackers", KickstartValueError)
38 if __name__ == "__main__":
39 unittest.main()