You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
8 lines
249 B
Python
8 lines
249 B
Python
10 years ago
|
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')
|