| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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 trychange.py.""" | 6 """Unit tests for trychange.py.""" |
| 7 | 7 |
| 8 # pylint: disable=E1103,W0403 | 8 # pylint: disable=E1103,W0403 |
| 9 | 9 |
| 10 # Fixes include path. | 10 # Fixes include path. |
| 11 from super_mox import SuperMoxTestBase | 11 from super_mox import SuperMoxTestBase |
| 12 | 12 |
| (...skipping 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 100 self.mox.ReplayAll() | 100 self.mox.ReplayAll() |
| 101 git = trychange.GIT(self.options, self.fake_root) | 101 git = trychange.GIT(self.options, self.fake_root) |
| 102 self.assertEqual(git.GetFileNames(), self.expected_files) | 102 self.assertEqual(git.GetFileNames(), self.expected_files) |
| 103 self.assertEqual(git.checkout_root, self.fake_root) | 103 self.assertEqual(git.checkout_root, self.fake_root) |
| 104 self.assertEqual(git.GenerateDiff(), 'A diff') | 104 self.assertEqual(git.GenerateDiff(), 'A diff') |
| 105 | 105 |
| 106 | 106 |
| 107 if __name__ == '__main__': | 107 if __name__ == '__main__': |
| 108 import unittest | 108 import unittest |
| 109 unittest.main() | 109 unittest.main() |
| OLD | NEW |