Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(288)

Unified Diff: recipes/engine_tests/trigger.py

Issue 2806363004: Enable strict coverage for step module (Closed)
Patch Set: review Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: recipes/engine_tests/trigger.py
diff --git a/recipes/engine_tests/trigger.py b/recipes/engine_tests/trigger.py
deleted file mode 100644
index c3439200deb2d8cf18794e283b8cdb740b26fd39..0000000000000000000000000000000000000000
--- a/recipes/engine_tests/trigger.py
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 2013 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.
-
-from recipe_engine.recipe_api import Property
-
-DEPS = [
- 'properties',
- 'step',
-]
-
-PROPERTIES = {
- 'command': Property(default=None),
-}
-
-def RunSteps(api, command):
- api.step(
- 'trigger some junk',
- cmd=command,
- trigger_specs=[{
- 'builder_name': 'triggered',
- 'buildbot_changes': [{
- 'when_timestamp': 1445412480,
- }],
- }])
-
-def GenTests(api):
- yield api.test('basic')
« no previous file with comments | « recipes/engine_tests/subannotations.expected/basic.json ('k') | recipes/engine_tests/trigger.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698