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: recipes/engine_tests/depend_on/dont_need_properties_helper.py

Issue 1421843006: Add simple depends_on API. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/recipes-py@master
Patch Set: Remove old expectation, move tests to their own folder. Created 5 years 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
OLDNEW
(Empty)
1 from recipe_engine.recipe_api import Property
2 from recipe_engine import config
3
4 DEPS = [
5 'recipe_engine/properties',
6 ]
7
8 # Missing PROPERTIES on purpose
9
10 RETURN_SCHEMA = config.ReturnSchema(
11 result=config.Single(int),
12 )
13
14
15 def RunSteps(api):
16 return RETURN_SCHEMA(result=0)
17
18 def GenTests(api):
19 yield (
20 api.test('basic')
21 )
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698