| # Copyright 2021 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. | |
| DEPS = [ | |
| "fuchsia/monorail", | |
| "fuchsia/status_check", | |
| ] | |
| def RunSteps(api): | |
| api.monorail.file_bug( | |
| "file bug", | |
| "Bug title", | |
| "A detailed description", | |
| components=("Foo", "Bar>Baz"), | |
| labels=("needs-triage",), | |
| ) | |
| def GenTests(api): | |
| yield api.status_check.test("basic") |