summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTzafrir Cohen <tzafrir@debian.org>2014-12-23 19:22:56 +0200
committerTzafrir Cohen <tzafrir@debian.org>2014-12-23 19:23:28 +0200
commitb2d8fa3bdb750ddf974cb605de4e5f0c9b4281cb (patch)
treea9fe49f9feafda20786ecd77f63dc904b4048fbc
parent2f19ce94ee891a231c16b9520eebdd90a6ed113b (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 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,