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

Side by Side Diff: third_party/recipe_engine/recipe_modules/properties/test_api.py

Issue 1241323004: Cross-repo recipe package system. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Moved show_me_the_modules into recipe_engine Created 5 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 unified diff | Download patch | Annotate | Revision Log
OLDNEW
1 from recipe_engine import recipe_test_api 1 from recipe_engine import recipe_test_api
2 2
3 class PropertiesTestApi(recipe_test_api.RecipeTestApi): 3 class PropertiesTestApi(recipe_test_api.RecipeTestApi):
4 def __call__(self, **kwargs): 4 def __call__(self, **kwargs):
5 ret = self.test(None) 5 ret = self.test(None)
6 ret.properties.update(kwargs) 6 ret.properties.update(kwargs)
7 return ret 7 return ret
8 8
9 def generic(self, **kwargs): 9 def generic(self, **kwargs):
10 """ 10 """
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 patchset=1, 62 patchset=1,
63 project='chrome', 63 project='chrome',
64 repository='', 64 repository='',
65 requester='commit-bot@chromium.org', 65 requester='commit-bot@chromium.org',
66 revision='HEAD', 66 revision='HEAD',
67 rietveld='https://codereview.chromium.org', 67 rietveld='https://codereview.chromium.org',
68 patch_project='chromium', 68 patch_project='chromium',
69 ) 69 )
70 ret.properties.update(kwargs) 70 ret.properties.update(kwargs)
71 return ret 71 return ret
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698