summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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 331d7cc..d7a8f58 100644
--- a/tests/01_test_help.py
+++ b/tests/01_test_help.py
@@ -27,7 +27,8 @@ class TestHelp(unittest.TestCase):
"""Test help output of RPM-specific commands"""
def testHelpRpm(self):
- for script in ['import_srpm']:
+ for script in ['import_srpm',
+ 'pq_rpm']:
module = 'gbp.scripts.%s' % script
m = __import__(module, globals(), locals(), ['main'], -1)
self.assertRaises(SystemExit,