blob: 993f4a44ae9fffccdc9c46d7f178288a62b42500 [file] [log] [blame]
# Copyright 2019 The Fuchsia 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 = [
'fuchsia/experimental',
'recipe_engine/properties',
]
def RunSteps(api):
# Test that the opposite of whatever default is set in __init__.py is negated
# for every experimental property, to prove the setter works.
assert api.experimental.resultstore
assert api.experimental.partial_checkout
def GenTests(api):
yield api.test('basic') + api.properties(**dict({
'experimental.resultstore': True,
'experimental.partial_checkout': True,
}))