Index: recipes/engine_tests/depend_on/need_return_schema_helper.py |
diff --git a/recipes/engine_tests/depend_on/need_return_schema_helper.py b/recipes/engine_tests/depend_on/need_return_schema_helper.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..a97cb912cb5f4e105402c799f812fcfe9fbe1412 |
--- /dev/null |
+++ b/recipes/engine_tests/depend_on/need_return_schema_helper.py |
@@ -0,0 +1,18 @@ |
+from recipe_engine.recipe_api import Property |
+from recipe_engine import config |
+ |
+DEPS = [ |
+ 'recipe_engine/properties', |
+] |
+ |
+PROPERTIES = {} |
+ |
+# Missing a RETURN_SCHEMA on purpose |
+ |
+def RunSteps(api): |
+ pass |
+ |
+def GenTests(api): |
+ yield ( |
+ api.test('basic') |
+ ) |