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

Unified Diff: tests/git_cl_test.py

Issue 14854003: Make git-cl more accurately imitate git's editor selection process, and respect $VISUAL. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/depot_tools.git@master
Patch Set: Created 7 years, 8 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
« gclient_utils.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 d6610653a0a5a3e3eb219ad9d0a89df5d8a8da5c..ffd61be3de42f91073a9a2c8faed36c4cf099915 100755
--- a/tests/git_cl_test.py
+++ b/tests/git_cl_test.py
@@ -114,6 +114,11 @@ class TestGitCl(TestCase):
cls._git_upload_calls())
@classmethod
+ def _upload_no_rev_calls(cls, similarity, find_copies):
+ return (cls._git_base_calls(similarity, find_copies) +
+ cls._git_upload_no_rev_calls())
+
+ @classmethod
def _git_base_calls(cls, similarity, find_copies):
if similarity is None:
similarity = '50'
@@ -169,8 +174,15 @@ class TestGitCl(TestCase):
]
@classmethod
+ def _git_upload_no_rev_calls(cls):
+ return [
+ ((['git', 'config', 'core.editor'],), ''),
+ ]
+
+ @classmethod
def _git_upload_calls(cls):
return [
+ ((['git', 'config', 'core.editor'],), ''),
((['git', 'config', 'rietveld.cc'],), ''),
((['git', 'config', 'branch.master.base-url'],), ''),
((['git', 'config', '--local', '--get-regexp', '^svn-remote\\.'],),
@@ -330,7 +342,7 @@ class TestGitCl(TestCase):
find_copies = None
self.calls = self._upload_calls(similarity, find_copies)
- def RunEditor(desc, _):
+ def RunEditor(desc, _, **kwargs):
self.assertEquals(
'# Enter a description of the change.\n'
'# This will be displayed on the codereview site.\n'
@@ -422,8 +434,8 @@ class TestGitCl(TestCase):
mock = FileMock()
try:
- self.calls = self._git_base_calls(None, None)
- def RunEditor(desc, _):
+ self.calls = self._upload_no_rev_calls(None, None)
+ def RunEditor(desc, _, **kwargs):
return desc
self.mock(git_cl.gclient_utils, 'RunEditor', RunEditor)
self.mock(sys, 'stderr', mock)
« gclient_utils.py ('K') | « git_cl.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698