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

Unified Diff: tests/scm_unittest.py

Issue 3338003: Remove scm.SVN.Run() and all stdout argument to more calls. (Closed)
Patch Set: Created 10 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
« no previous file with comments | « tests/gclient_smoketest.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tests/scm_unittest.py
diff --git a/tests/scm_unittest.py b/tests/scm_unittest.py
index 43d1c796d06c228649b96c07ea3668a568aaa75f..6add5acadf88bb5b053e90253fa6bdef4eed800e 100755
--- a/tests/scm_unittest.py
+++ b/tests/scm_unittest.py
@@ -161,7 +161,7 @@ class SVNTestCase(BaseSCMTestCase):
'CaptureHeadRevision', 'CaptureInfo', 'CaptureStatus',
'current_version', 'DiffItem', 'GenerateDiff',
'GetCheckoutRoot', 'GetEmail', 'GetFileProperty', 'IsMoved',
- 'IsMovedInfo', 'ReadSimpleAuth', 'Run', 'RunAndGetFileList',
+ 'IsMovedInfo', 'ReadSimpleAuth', 'RunAndGetFileList',
]
# If this test fails, you should add the relevant test.
self.compareMembers(scm.SVN, members)
@@ -311,14 +311,6 @@ class SVNTestCase(BaseSCMTestCase):
]
self.assertEquals(sorted(info), sorted(expected))
- def testRun(self):
- param2 = 'bleh'
- scm.gclient_utils.CheckCallAndFilterAndHeader(
- ['svn', 'foo', 'bar'], cwd=param2,
- always=True).AndReturn(None)
- self.mox.ReplayAll()
- scm.SVN.Run(['foo', 'bar'], cwd=param2)
-
def testCaptureStatusEmpty(self):
text = r"""<?xml version="1.0"?>
<status>
« no previous file with comments | « tests/gclient_smoketest.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698