blob: 1a5632aafd377923ab6b4d9471b0621833bf0ac5 [file] [log] [blame]
# Copyright 2020 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.
"""Test API for sso."""
from recipe_engine import recipe_test_api
class SsoTestApi(recipe_test_api.RecipeTestApi):
"""Test API for sso."""
def properties(self, hosts=None, auto=False):
if hosts is None:
hosts = ["fuchsia"]
return {
"$fuchsia/sso": {"hosts_to_configure_insteadof": list(hosts)},
}