blob: d8c48f5d890a20945e4e0b599d4c9583241244ed [file] [log] [blame]
# Copyright 2020 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
"""This is a fake recipe to trick the simulation and make it believes that
this module has tests. The actual test for this module is done via unit test
because the `issue` method can only be used from recipe_modules, not recipes.
"""
from recipe_engine import post_process
PYTHON_VERSION_COMPATIBILITY = 'PY2+3'
def RunSteps(api):
del api
def GenTests(api):
yield api.test('basic') + api.post_process(post_process.DropExpectation)