| Index: recipe_modules/tryserver/test_api.py
|
| diff --git a/recipe_modules/tryserver/test_api.py b/recipe_modules/tryserver/test_api.py
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..1bb8e0dcf5ae22cd3ccacc03664413297b7b5183
|
| --- /dev/null
|
| +++ b/recipe_modules/tryserver/test_api.py
|
| @@ -0,0 +1,7 @@
|
| +from recipe_engine import recipe_test_api
|
| +
|
| +class TryserverTestApi(recipe_test_api.RecipeTestApi):
|
| + def patch_content(self):
|
| + return self.m.raw_io.output(
|
| + 'fake patch.diff content (line 1)\n'
|
| + 'fake patch.diff content (line 2)\n')
|
|
|