OLD | NEW |
(Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. |
| 4 |
| 5 from recipe_engine.config_types import Path |
| 6 |
| 7 |
| 8 DEPS = [ |
| 9 'git_cl', |
| 10 'recipe_engine/path', |
| 11 'recipe_engine/raw_io', |
| 12 'recipe_engine/step', |
| 13 ] |
| 14 |
| 15 |
| 16 def RunSteps(api): |
| 17 res = api.git_cl.get_description(cwd=api.path.mkdtemp('fakee')) |
| 18 # Look ma, no hands! (Can pass in the cwd without configuring git_cl). |
| 19 api.step('echo', ['echo', res.stdout]) |
| 20 |
| 21 api.git_cl.set_config('basic') |
| 22 api.git_cl.c.repo_location = api.path.mkdtemp('fakerepo') |
| 23 |
| 24 api.step('echo', ['echo', api.git_cl.get_description().stdout]) |
| 25 |
| 26 api.git_cl.set_description("new description woo") |
| 27 |
| 28 api.step('echo', ['echo', api.git_cl.get_description().stdout]) |
| 29 |
| 30 def GenTests(api): |
| 31 yield ( |
| 32 api.test('basic') + |
| 33 api.override_step_data( |
| 34 'git_cl description', stdout=api.raw_io.output('hi')) + |
| 35 api.override_step_data( |
| 36 'git_cl description (2)', stdout=api.raw_io.output('hey')) + |
| 37 api.override_step_data( |
| 38 'git_cl description (3)', stdout=api.raw_io.output( |
| 39 'new description woo')) |
| 40 ) |
| 41 |
OLD | NEW |