OLD | NEW |
1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
5 | 5 |
6 """Unit tests for gclient_scm.py.""" | 6 """Unit tests for gclient_scm.py.""" |
7 | 7 |
8 # pylint: disable=E1103 | 8 # pylint: disable=E1103 |
9 | 9 |
10 # Import before super_mox to keep valid references. | 10 # Import before super_mox to keep valid references. |
(...skipping 84 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
95 return self.OptionsObject(*args, **kwargs) | 95 return self.OptionsObject(*args, **kwargs) |
96 | 96 |
97 def setUp(self): | 97 def setUp(self): |
98 BaseTestCase.setUp(self) | 98 BaseTestCase.setUp(self) |
99 self.url = self.SvnUrl() | 99 self.url = self.SvnUrl() |
100 | 100 |
101 def testDir(self): | 101 def testDir(self): |
102 members = [ | 102 members = [ |
103 'BinaryExists', | 103 'BinaryExists', |
104 'FullUrlForRelativeUrl', | 104 'FullUrlForRelativeUrl', |
| 105 'GetCheckoutRoot', |
105 'GetRevisionDate', | 106 'GetRevisionDate', |
106 'GetUsableRev', | 107 'GetUsableRev', |
107 'RunCommand', | 108 'RunCommand', |
108 'cleanup', | 109 'cleanup', |
109 'diff', | 110 'diff', |
110 'nag_max', | 111 'nag_max', |
111 'nag_timer', | 112 'nag_timer', |
112 'pack', | 113 'pack', |
113 'relpath', | 114 'relpath', |
114 'revert', | 115 'revert', |
(...skipping 666 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
781 unittest.TestCase.tearDown(self) | 782 unittest.TestCase.tearDown(self) |
782 rmtree(self.root_dir) | 783 rmtree(self.root_dir) |
783 gclient_scm.GitWrapper.BinaryExists = self._original_GitBinaryExists | 784 gclient_scm.GitWrapper.BinaryExists = self._original_GitBinaryExists |
784 gclient_scm.SVNWrapper.BinaryExists = self._original_SVNBinaryExists | 785 gclient_scm.SVNWrapper.BinaryExists = self._original_SVNBinaryExists |
785 | 786 |
786 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): | 787 class ManagedGitWrapperTestCase(BaseGitWrapperTestCase): |
787 def testDir(self): | 788 def testDir(self): |
788 members = [ | 789 members = [ |
789 'BinaryExists', | 790 'BinaryExists', |
790 'FullUrlForRelativeUrl', | 791 'FullUrlForRelativeUrl', |
| 792 'GetCheckoutRoot', |
791 'GetRevisionDate', | 793 'GetRevisionDate', |
792 'GetUsableRev', | 794 'GetUsableRev', |
793 'RunCommand', | 795 'RunCommand', |
794 'cleanup', | 796 'cleanup', |
795 'diff', | 797 'diff', |
796 'nag_max', | 798 'nag_max', |
797 'nag_timer', | 799 'nag_timer', |
798 'pack', | 800 'pack', |
799 'UpdateSubmoduleConfig', | 801 'UpdateSubmoduleConfig', |
800 'relpath', | 802 'relpath', |
(...skipping 388 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1189 | 1191 |
1190 if __name__ == '__main__': | 1192 if __name__ == '__main__': |
1191 if '-v' in sys.argv: | 1193 if '-v' in sys.argv: |
1192 logging.basicConfig( | 1194 logging.basicConfig( |
1193 level=logging.DEBUG, | 1195 level=logging.DEBUG, |
1194 format='%(asctime).19s %(levelname)s %(filename)s:' | 1196 format='%(asctime).19s %(levelname)s %(filename)s:' |
1195 '%(lineno)s %(message)s') | 1197 '%(lineno)s %(message)s') |
1196 unittest.main() | 1198 unittest.main() |
1197 | 1199 |
1198 # vim: ts=2:sw=2:tw=80:et: | 1200 # vim: ts=2:sw=2:tw=80:et: |
OLD | NEW |