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

Side by Side Diff: recipes/engine_tests/unicode.py

Issue 2095663003: improve unicode support (Closed) Base URL: https://chromium.googlesource.com/external/github.com/luci/recipes-py@master
Patch Set: Created 4 years, 6 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 # -*- coding: utf-8 -*-
2 # Copyright 2013 The LUCI Authors. All rights reserved.
tandrii(chromium) 2016/06/23 19:52:36 nit : 2016
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'],
15 )
16 result.presentation.logs['thing'] = u'hiiiii 😀…'
17
18 def GenTests(api):
19 yield api.test('basic')
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698