summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
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,