blob: a24d903cd591ccc66fc2de647b4b758630bc4988 [file] [log] [blame]
# Copyright 2017 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
DEPS = [
'git',
'recipe_engine/step',
]
def RunSteps(api):
api.step('1', cmd=['git', 'status'])
with api.git.env():
api.step('2', cmd=['git', 'status'])
def GenTests(api):
yield api.test('test')