Index: recipe_engine/recipe_api.py |
diff --git a/recipe_engine/recipe_api.py b/recipe_engine/recipe_api.py |
index 985abe200e90516e993c956a9840d6c695a39d8a..c2bcdd697e76c8553009df4dec236de32a9aeead 100644 |
--- a/recipe_engine/recipe_api.py |
+++ b/recipe_engine/recipe_api.py |
@@ -454,8 +454,11 @@ class RecipeApi(RecipeApiPlain): |
class RecipeScriptApi(RecipeApiPlain, ModuleInjectionSite): |
- pass |
+ def depend_on(self, recipe, properties, **kwargs): |
+ return self._engine.depend_on(recipe, properties, **kwargs) |
+ def depend_on_test(self, recipe, properties, value, **kwargs): |
+ return self._engine.depend_on_test(recipe, properties, value, **kwargs) |
# This is a sentinel object for the Property system. This allows users to |
# specify a default of None that will actually be respected. |