1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
|
# vim: set fileencoding=utf-8 :
"""Check if --help works"""
from . import context # noqa: F401
from .testutils.data import TestCaseWithData
class TestHelp(TestCaseWithData):
"""Test help output of gbp commands"""
deb_cmds = ['buildpackage',
'config',
'create_remote_repo',
'dch',
'import_orig',
'import_ref',
'import_dsc',
'pristine_tar',
'pull',
'push',
'pq',
'tag']
rpm_cmds = ['buildpackage_rpm',
'import_srpm',
'rpm_ch',
'pq_rpm']
@TestCaseWithData.feed(deb_cmds + rpm_cmds)
def testHelp(self, script):
module = 'gbp.scripts.%s' % script
m = __import__(module, globals(), locals(), ['main'], 0)
with self.assertRaises(SystemExit):
m.main(['doesnotmatter', '--help'])
# vim:et:ts=4:sw=4:et:sts=4:ai:set list listchars=tab\:»·,trail\:·:
|