summaryrefslogtreecommitdiffhomepage
path: root/tests/component/rpm
diff options
context:
space:
mode:
authorGuido Günther <agx@sigxcpu.org>2016-07-06 16:41:19 +0200
committerGuido Günther <agx@sigxcpu.org>2016-07-06 16:41:35 +0200
commit12450dc26aac898cb20018ca7bf77d60b0e4fe2f (patch)
tree9fc93ae384aa5326619c11519ef6ae6d87953252 /tests/component/rpm
parenta6311e67657caad551ca0908a17e1c1339507472 (diff)
Remove outdated references to git-rpm-ch
These were pulled in with the gbp-rpm-ch integration in c5cfb5ecc4c0fab706a5fb984ebf60dfa34390f2 Git-Dch: Ignore
Diffstat (limited to 'tests/component/rpm')
-rw-r--r--tests/component/rpm/test_rpm_ch.py10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/component/rpm/test_rpm_ch.py b/tests/component/rpm/test_rpm_ch.py
index 6cfa4035..4bc46bd1 100644
--- a/tests/component/rpm/test_rpm_ch.py
+++ b/tests/component/rpm/test_rpm_ch.py
@@ -14,7 +14,7 @@
# You should have received a copy of the GNU General Public License
# along with this program; if not, please see
# <http://www.gnu.org/licenses/>
-"""Tests for the git-rpm-ch tool"""
+"""Tests for the gbp-rpm-ch tool"""
import os
import re
@@ -30,14 +30,14 @@ from tests.component.rpm import RpmRepoTestBase
def mock_ch(args):
- """Wrapper for git-rpm-ch"""
+ """Wrapper for gbp-rpm-ch"""
return rpm_ch(['arg0', '--packaging-branch=master',
'--spawn-editor=never'] + args)
class TestRpmCh(RpmRepoTestBase):
- """Basic tests for git-rpm-ch"""
+ """Basic tests for gbp-rpm-ch"""
def setUp(self):
"""Test case setup"""
@@ -54,14 +54,14 @@ class TestRpmCh(RpmRepoTestBase):
return fobj.readlines()
def test_invalid_args(self):
- """See that git-rpm-ch fails gracefully when called with invalid args"""
+ """See that gbp-rpm-ch fails gracefully when called with invalid args"""
GitRepository.create('.')
with assert_raises(SystemExit):
mock_ch(['--invalid-opt'])
def test_import_outside_repo(self):
- """Run git-rpm-ch when not in a git repository"""
+ """Run gbp-rpm-ch when not in a git repository"""
eq_(mock_ch([]), 1)
self._check_log(0, 'gbp:error: No Git repository at ')