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

Side by Side Diff: recipe_modules/step/tests/active_result.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 unified diff | Download patch
OLDNEW
(Empty)
1 # Copyright 2017 The LUCI Authors. All rights reserved.
2 # Use of this source code is governed under the Apache License, Version 2.0
3 # that can be found in the LICENSE file.
4
5 DEPS = [
6 'step',
7 ]
8
9
10 def RunSteps(api):
11 api.step('test step', [])
12 api.step.active_result.presentation.logs['test_log'] = ['line 1', 'line2']
13 api.step.active_result.presentation.step_text = 'test step text'
14
15
16 def GenTests(api):
17 yield api.test('basic')
OLDNEW
« no previous file with comments | « recipe_modules/step/__init__.py ('k') | recipe_modules/step/tests/active_result.expected/basic.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698