diff options
author | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2012-01-12 15:38:29 +0200 |
---|---|---|
committer | Markus Lehtonen <markus.lehtonen@linux.intel.com> | 2014-11-14 14:22:11 +0200 |
commit | a125024d33d76422283305ec98420cfdad5565b5 (patch) | |
tree | 6395977cd845e05d27d07fc779f397b8537be52b /tests | |
parent | 0cdaa3d613497da275ac7c7d9f2e80e6c7fd8b77 (diff) | |
download | git-buildpackage-a125024d33d76422283305ec98420cfdad5565b5.tar.gz git-buildpackage-a125024d33d76422283305ec98420cfdad5565b5.tar.bz2 git-buildpackage-a125024d33d76422283305ec98420cfdad5565b5.zip |
Introduce gbp-pq-rpm tool
Initial version of gbp-pq-rpm: a tool for managing patch queues for rpm
packages.
Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
Signed-off-by: Olev Kartau <olev.kartau@intel.com>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/01_test_help.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/01_test_help.py b/tests/01_test_help.py index 331d7cc6..d0266a66 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, |