Index: recipes/engine_tests/depend_on/dont_need_properties.py |
diff --git a/recipes/engine_tests/depend_on/dont_need_properties.py b/recipes/engine_tests/depend_on/dont_need_properties.py |
new file mode 100644 |
index 0000000000000000000000000000000000000000..3504bbdfff97ee9ea88b348bb523d84918132cc3 |
--- /dev/null |
+++ b/recipes/engine_tests/depend_on/dont_need_properties.py |
@@ -0,0 +1,15 @@ |
+from recipe_engine.recipe_api import Property |
+from recipe_engine import config |
+ |
+DEPS = [ |
+ 'recipe_engine/properties', |
+] |
+ |
+def RunSteps(api): |
+ api.depend_on('engine_tests/depend_on/dont_need_properties_helper', {}) |
+ |
+def GenTests(api): |
+ yield ( |
+ api.test('basic') + |
+ api.depend_on('engine_tests/depend_on/dont_need_properties_helper', {}, {'result': 0}) |
+ ) |