blob: 9e508bcab3748955d227b1a9e57272b4498e20aa [file] [log] [blame]
# Copyright 2020 The Fuchsia Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
PYTHON_VERSION_COMPATIBILITY = "PY3"
DEPS = [
"fuchsia/cache",
"fuchsia/status_check",
"recipe_engine/path",
]
def RunSteps(api):
with api.cache.guard(cache="example"):
return
def GenTests(api):
yield api.status_check.test("default") + api.path.exists(
api.path["cache"].join("example", ".GUARD_FILE")
)