OLD | NEW |
---|---|
(Empty) | |
1 # -*- coding: utf-8 -*- | |
2 # Copyright 2013 The LUCI Authors. All rights reserved. | |
3 # Use of this source code is governed under the Apache License, Version 2.0 | |
4 # that can be found in the LICENSE file. | |
5 | |
6 DEPS = [ | |
7 'properties', | |
8 'step', | |
9 ] | |
10 | |
11 def RunSteps(api): | |
12 result = api.step( | |
13 'trigger some junk', | |
14 cmd=['echo', 'hi'], | |
M-A Ruel
2016/06/23 13:12:33
'echo', '❤ python'
to test unicode in the command
martiniss
2016/06/23 17:32:14
AFAIK unicode isn't natively supported on windows,
| |
15 ) | |
16 result.presentation.logs['thing'] = u'hiiiii 😀…' | |
17 | |
18 def GenTests(api): | |
19 yield api.test('basic') | |
OLD | NEW |