summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorMarkus Lehtonen <markus.lehtonen@linux.intel.com>2012-01-12 15:39:55 +0200
committerMarkus Lehtonen <markus.lehtonen@linux.intel.com>2014-01-14 13:48:21 +0200
commitf9056be0db95ab903081470d4b21fbfb67bc27d0 (patch)
tree3e0645b1f0f0af2ba36f294f416cb44a4542ed34 /tests
parentfe32d2a96b6e0c76974e1d048603a52a31598fa6 (diff)
downloadgit-buildpackage-f9056be0db95ab903081470d4b21fbfb67bc27d0.tar.gz
git-buildpackage-f9056be0db95ab903081470d4b21fbfb67bc27d0.tar.bz2
git-buildpackage-f9056be0db95ab903081470d4b21fbfb67bc27d0.zip
Introduce git-import-orig-rpm tool
Initial version of the git-import-orig-rpm: version of git-import-orig intended for maintaining rpm packages. Signed-off-by: Markus Lehtonen <markus.lehtonen@linux.intel.com>
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 13b2c507..07051785 100644
--- a/tests/01_test_help.py
+++ b/tests/01_test_help.py
@@ -28,7 +28,8 @@ class TestHelp(unittest.TestCase):
def testHelpRpm(self):
for script in ['import_srpm',
'pq_rpm',
- 'buildpackage_rpm']:
+ 'buildpackage_rpm',
+ 'import_orig_rpm']:
module = 'gbp.scripts.%s' % script
m = __import__(module, globals(), locals(), ['main'], -1)
self.assertRaises(SystemExit,