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

Side by Side Diff: scripts/slave/recipe_modules/ios/test_api.py

Issue 1151423002: Move recipe engine to third_party/recipe_engine. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved field_composer_test with its buddies Created 5 years, 6 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 unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « scripts/slave/recipe_modules/ios/api.py ('k') | scripts/slave/recipe_modules/isolate/api.py » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 from copy import deepcopy 5 from copy import deepcopy
6 from slave import recipe_test_api 6 from recipe_engine import recipe_test_api
7 7
8 class iOSTestApi(recipe_test_api.RecipeTestApi): 8 class iOSTestApi(recipe_test_api.RecipeTestApi):
9 @recipe_test_api.mod_test_data 9 @recipe_test_api.mod_test_data
10 @staticmethod 10 @staticmethod
11 def build_config(config): 11 def build_config(config):
12 return deepcopy(config) 12 return deepcopy(config)
13 13
14 def make_test_build_config(self, config): 14 def make_test_build_config(self, config):
15 return self.build_config(config) 15 return self.build_config(config)
16 16
(...skipping 22 matching lines...) Expand all
39 'links': { 39 'links': {
40 'fake URL text': 'fake URL', 40 'fake URL text': 'fake URL',
41 }, 41 },
42 'logs': { 42 'logs': {
43 'fake log': [ 43 'fake log': [
44 'fake log line 1', 44 'fake log line 1',
45 'fake log line 2', 45 'fake log line 2',
46 ], 46 ],
47 } 47 }
48 }) 48 })
OLDNEW
« no previous file with comments | « scripts/slave/recipe_modules/ios/api.py ('k') | scripts/slave/recipe_modules/isolate/api.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698