Exemplo n.º 1
0
 def check_options(self):                     # pylint: disable=R0201
     ''' Raise error if Settings  combination is invalid. '''
     AbstractBug.do_check_options('--url', ['prebuilt', 'other_bz'])
Exemplo n.º 2
0
 def check_options(self):
     bad_opts = list(AbstractBug.BZ_OPTIONS)
     bad_opts.extend( ['prebuilt'])
     AbstractBug.do_check_options(self, '--url', bad_opts)
Exemplo n.º 3
0
 def check_options(self):
     AbstractBug.do_check_options(self, '--bug', ['prebuilt'])
Exemplo n.º 4
0
 def check_options(self):                    # pylint: disable=R0201
     ''' Raise SettingsError if Settings combinations is invalid. '''
     AbstractBug.do_check_options('--bug', ['prebuilt'])
Exemplo n.º 5
0
 def check_options(self):
     ''' Raise error if Settings options combination is invalid. '''
     AbstractBug.do_check_options('--name', ['other_bz'])
Exemplo n.º 6
0
 def check_options(self):  # pylint: disable=R0201
     ''' Raise SettingsError if Settings combinations is invalid. '''
     AbstractBug.do_check_options('--bug', ['prebuilt'])
Exemplo n.º 7
0
 def check_options(self):
     AbstractBug.do_check_options(self, '--bug', ['prebuilt'])
Exemplo n.º 8
0
 def check_options(self):  # pylint: disable=R0201
     ''' Raise error if Settings  combination is invalid. '''
     AbstractBug.do_check_options('--url', ['prebuilt', 'other_bz'])
Exemplo n.º 9
0
 def check_options(self):
     ''' Raise error if Settings options combination is invalid. '''
     AbstractBug.do_check_options('--name', ['other_bz'])
Exemplo n.º 10
0
 def check_options(self):  # pylint: disable=R0201
     """ Raise error if Settings  combination is invalid. """
     AbstractBug.do_check_options("--url", ["prebuilt", "other_bz"])
Exemplo n.º 11
0
 def check_options(self):
     bad_opts = list(AbstractBug.BZ_OPTIONS)
     bad_opts.append('cache')
     AbstractBug.do_check_options(self, '--name', bad_opts)