blob: 3f58a29537a48c28260d48ed3fc8535f94ad31af [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.
from recipe_engine import post_process
from RECIPE_MODULES.build import chromium
from RECIPE_MODULES.build.chromium_tests import (steps, try_spec as
try_spec_module)
DEPS = [
'profiles',
'recipe_engine/assertions',
]
def RunSteps(api):
api.assertions.assertFalse(api.profiles._root_profile_dir)
api.profiles.profile_dir()
api.assertions.assertTrue(api.profiles._root_profile_dir)
api.assertions.assertTrue(api.profiles.profile_dir())
api.profiles.profile_dir(identifier='random_key')
api.assertions.assertTrue(api.profiles.profile_subdirs)
def GenTests(api):
yield api.test(
'basic',
api.post_process(post_process.DropExpectation),
)