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

Unified Diff: recipes/engine_tests/bad_properties.py

Issue 1421843006: Add simple depends_on API. (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/recipes-py@master
Patch Set: Fix small broken tests, add invoke tests, respond to nits. Created 5 years, 1 month 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 side-by-side diff with in-line comments
Download patch
Index: recipes/engine_tests/bad_properties.py
diff --git a/recipes/engine_tests/bad_properties.py b/recipes/engine_tests/bad_properties.py
new file mode 100644
index 0000000000000000000000000000000000000000..c94cd3d1232f522c7d06da2bfe0eae6c5b1eef12
--- /dev/null
+++ b/recipes/engine_tests/bad_properties.py
@@ -0,0 +1,23 @@
+from recipe_engine.recipe_api import Property
+from recipe_engine import config
+
+DEPS = [
+ 'recipe_engine/properties',
+]
+
+PROPERTIES = {}
+
+RETURN_SCHEMA = config.ReturnSchema(
+ result=config.Single(int),
+)
+
+def RunSteps(api):
+ res = api.depend_on('engine_tests/bottom', {'number': 'lalala'})
+ return RETURN_SCHEMA(result=res['number_times_two'])
+
+def GenTests(api):
+ yield (
+ api.test('basic') +
+ api.properties() +
+ api.expect_exception('TypeError')
+ )

Powered by Google App Engine
This is Rietveld 408576698