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

Unified Diff: tests/gclient_scm_test.py

Issue 8382030: depot_tools: Add git svn find-rev for safesync_url parsing (commonly LKGR link). (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/depot_tools/
Patch Set: review comments, still need to add test Created 9 years, 2 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
« scm.py ('K') | « scm.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/gclient_scm_test.py
===================================================================
--- tests/gclient_scm_test.py (revision 107937)
+++ tests/gclient_scm_test.py (working copy)
@@ -84,12 +84,22 @@
self.url = self.SvnUrl()
def testDir(self):
- members = [
- 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand',
- 'cleanup', 'diff', 'pack', 'relpath', 'revert',
- 'revinfo', 'runhooks', 'status', 'update',
- 'updatesingle', 'url',
- ]
+ members = [ 'FindSafesyncRev',
+ 'FullUrlForRelativeUrl',
+ 'GetRevisionDate',
+ 'RunCommand',
+ 'cleanup',
+ 'diff',
+ 'pack',
+ 'relpath',
+ 'revert',
+ 'revinfo',
+ 'runhooks',
+ 'status',
+ 'update',
+ 'updatesingle',
+ 'url'
+ ]
# If you add a member, be sure to add the relevant test!
self.compareMembers(self._scm_wrapper('svn://a'), members)
@@ -590,11 +600,21 @@
class ManagedGitWrapperTestCase(BaseGitWrapperTestCase):
def testDir(self):
- members = [
- 'FullUrlForRelativeUrl', 'GetRevisionDate', 'RunCommand',
- 'cleanup', 'diff', 'pack', 'relpath', 'revert',
- 'revinfo', 'runhooks', 'status', 'update', 'url',
- ]
+ members = [ 'FindSafesyncRev',
+ 'FullUrlForRelativeUrl',
+ 'GetRevisionDate',
+ 'RunCommand',
+ 'cleanup',
+ 'diff',
+ 'pack',
+ 'relpath',
+ 'revert',
+ 'revinfo',
+ 'runhooks',
+ 'status',
+ 'update',
+ 'url',
+ ]
# If you add a member, be sure to add the relevant test!
self.compareMembers(gclient_scm.CreateSCM(url=self.url), members)
« scm.py ('K') | « scm.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698