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

Unified Diff: tests/patch_test.py

Issue 10894036: Fix hunk handling for 'default hunk header values'. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools
Patch Set: Created 8 years, 4 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
« patch.py ('K') | « testing_support/patches_data.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/patch_test.py
diff --git a/tests/patch_test.py b/tests/patch_test.py
index 41ef0cef104036b5f92dde7659c95d60cc6807ee..67837ee99e5e06e26bf914245c70333680aa0e29 100755
--- a/tests/patch_test.py
+++ b/tests/patch_test.py
@@ -360,6 +360,19 @@ class PatchTest(unittest.TestCase):
patchset = patch.PatchSet(patches)
self.assertEquals(expected, patchset.filenames)
+ def testGitPatch(self):
+ p = patch.FilePatchDiff('chrome/file.cc', GIT.PATCH, [])
+ self._check_patch(
+ p, 'chrome/file.cc', GIT.PATCH, is_git_diff=True, patchlevel=1,
+ nb_hunks=1)
+
+ def testGitPatchShortHunkHeader(self):
+ p = patch.FilePatchDiff(
+ 'chrome/browser/api/OWNERS', GIT.PATCH_SHORT_HUNK_HEADER, [])
+ self._check_patch(
+ p, 'chrome/browser/api/OWNERS', GIT.PATCH_SHORT_HUNK_HEADER,
+ is_git_diff=True, patchlevel=1, nb_hunks=1)
+
class PatchTestFail(unittest.TestCase):
# All patches that should throw.
« patch.py ('K') | « testing_support/patches_data.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698