Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2163)

Unified Diff: tests/git_cl_test.py

Issue 2076683002: ABANDONED. Remove obsolete git cl dcommit. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@dcommit-warn
Patch Set: Updated patchset dependency Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/git_cl_test.py
diff --git a/tests/git_cl_test.py b/tests/git_cl_test.py
index 774f6f014c60a604db86c4b54ecc6bc9499ba25b..0b951dde79f2c29b50f98b9cafdd571e8553bd95 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -673,24 +673,6 @@ class TestGitCl(TestCase):
self.assertEqual(
'Must specify reviewers to send email.\n', stderr.getvalue())
- def test_dcommit(self):
- self.mock(git_cl.sys, 'stdout', StringIO.StringIO())
- self.calls = (
- self._dcommit_calls_1() +
- self._git_sanity_checks('fake_ancestor_sha', 'working') +
- self._dcommit_calls_normal() +
- self._dcommit_calls_3())
- git_cl.main(['dcommit'])
-
- def test_dcommit_bypass_hooks(self):
- self.mock(git_cl.sys, 'stdout', StringIO.StringIO())
- self.calls = (
- self._dcommit_calls_1() +
- self._dcommit_calls_bypassed() +
- self._dcommit_calls_3())
- git_cl.main(['dcommit', '--bypass-hooks'])
-
-
@classmethod
def _gerrit_ensure_auth_calls(cls, issue=None, skip_auth_check=False):
cmd = ['git', 'config', '--bool', 'gerrit.skip-ensure-authenticated']
« git_cl.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698