blob: 76311170c040b02e55c8557910e9e59afa9f2c26 [file] [log] [blame]
# Copyright 2020 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 = [
'flutter/gerrit_util',
'recipe_engine/json'
]
def RunSteps(api):
api.gerrit_util.get_gerrit_cl_details(
'flutter.googlesource.com', '12345'
)
def GenTests(api):
yield api.test(
'basic',
api.step_data(
'gerrit get cl info 12345',
api.json.output([('branch', 'main')])
)
)