summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2012-01-12 15:39:12 +0200
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>2014-11-14 14:22:11 +0200
commit1e3d5d835f492daf11995eb5ba27bb0c950cd7b8 (patch)
tree8b0bdb9956c49a696af47735218dd08c4ef21897 /tests
parentd8070b47a02fb6098d34ecac10d08f760fe3aecc (diff)
downloadgit-buildpackage-1e3d5d835f492daf11995eb5ba27bb0c950cd7b8.tar.gz
git-buildpackage-1e3d5d835f492daf11995eb5ba27bb0c950cd7b8.tar.bz2
git-buildpackage-1e3d5d835f492daf11995eb5ba27bb0c950cd7b8.zip
Introduce git-buildpackage-rpm tool
Initial version of git-buildpackage-rpm: git-buildpackage tool for rpms. Also adds some new options to config.py that are exclusively used in this tool. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com> Signed-off-by: Ed Bartosh <eduard.bartosh@intel.com> Signed-off-by: Zhang Qiang <qiang.z.zhang@intel.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/01_test_help.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/01_test_help.py b/tests/01_test_help.py
index d0266a66..d1e96f21 100644
--- a/tests/01_test_help.py
+++ b/tests/01_test_help.py
@@ -28,7 +28,8 @@ class TestHelp(unittest.TestCase):
"""Test help output of RPM-specific commands"""
def testHelpRpm(self):
for script in ['import_srpm',
- 'pq_rpm']:
+ 'pq_rpm',
+ 'buildpackage_rpm']:
module = 'gbp.scripts.%s' % script
m = __import__(module, globals(), locals(), ['main'], -1)
self.assertRaises(SystemExit,