Home | History | Annotate | Download | only in layout_tests

Lines Matching refs:MockExecutive

33 class MockExecutive(object):
46 MockExecutive.last_run_command += [args]
47 return MockExecutive.response
52 MockExecutive.last_run_command = []
53 MockExecutive.response = ''
54 deduplicate_tests.executive = MockExecutive
134 MockExecutive.response = (
141 self.assertEquals(1, len(MockExecutive.last_run_command))
142 self.assertEquals(('git', 'ls-tree', '-r', 'HEAD', 'LayoutTests'), MockExecutive.last_run_command[-1])
146 MockExecutive.response = (
156 self.assertEquals(1, len(MockExecutive.last_run_command))
157 self.assertEquals(('git', 'ls-tree', '-r', 'HEAD', 'LayoutTests'), MockExecutive.last_run_command[-1])
171 self.assertEquals(2, len(MockExecutive.last_run_command))
172 self.assertEquals(('git', 'ls-tree', '-r', 'HEAD', 'LayoutTests'), MockExecutive.last_run_command[-1])
181 self.assertEquals(3, len(MockExecutive.last_run_command))
182 self.assertEquals(('git', 'ls-tree', '-r', 'HEAD', 'LayoutTests'), MockExecutive.last_run_command[-1])