summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@debian.org>2014-12-23 19:22:56 +0200
committerTzafrir Cohen <tzafrir@debian.org>2015-03-26 14:21:52 +0200
commit69f381ee9056bc7f284fd25b96180517c27776ae (patch)
treeae71d275457f9acaa890133683fc8a49f356cacb
parent362675cc28ff818547ad29ebccb324eb5551dee1 (diff)
rpm-pq: Include in command-line test
Signed-off-by: Tzafrir Cohen <tzafrir@debian.org>
-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 b0bb9a1..c067b3f 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'], 0)
self.assertRaises(SystemExit,