blob: dd92f01bab326d84e5f452484bb3fab2cf9604df [file] [log] [blame]
# Copyright 2019 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.
import sys
import unittest
from core import path_util
class PathUtilTest(unittest.TestCase):
def testSysPath(self):
sys_path_before = list(sys.path)
with path_util.SysPath('_test_dir'):
sys_path_within_context = list(sys.path)
sys_path_after = list(sys.path)
self.assertEquals(sys_path_before, sys_path_after)
self.assertEquals(sys_path_before + ['_test_dir'], sys_path_within_context)