blob: 02db23fb584e99ac4d3d7d0ac0b2f45aefd7ccc5 [file] [log] [blame]
# Copyright 2015 The LUCI Authors. All rights reserved.
# Use of this source code is governed under the Apache License, Version 2.0
# that can be found in the LICENSE file.
from recipe_engine.recipe_api import Property, RequireClient
from recipe_engine import config
DEPS = [
'properties',
]
dependency_manager = RequireClient('dependency_manager')
def RunSteps(api):
dependency_manager.depend_on(
'engine_tests/depend_on/dont_need_properties_helper', {})
def GenTests(api):
yield (
api.test('basic') +
api.depend_on('engine_tests/depend_on/dont_need_properties_helper',
{}, {'result': 0})
)