blob: 29bf1beef5246e9bac4ef50f72b84e81e46250d6 [file]
# 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 __future__ import annotations
from recipe_engine import post_process
def RunSteps(api):
del api
def GenTests(api):
yield api.test('basic') + api.post_process(post_process.DropExpectation)