示例#1
0
 def test_missing(self):
     assert PROJECT_PARENT == _find_root(None, cwd=PROJECT_PARENT)
示例#2
0
 def test_none(self):
     assert PROJECT_ROOT == _find_root(None, cwd=ROOT)
示例#3
0
 def test_current(self):
     assert PROJECT_ROOT == _find_root(PROJECT_ROOT, cwd=ROOT)
示例#4
0
 def test_specified(self):
     os.chdir(PROJECT_PARENT)
     assert FILES == _find_root(FILES)
示例#5
0
 def test_missing(self):
     assert PROJECT_PARENT == _find_root(None, cwd=PROJECT_PARENT)
示例#6
0
 def test_current(self):
     assert PROJECT_ROOT == _find_root(PROJECT_ROOT, cwd=ROOT)
示例#7
0
 def test_none(self):
     assert PROJECT_ROOT == _find_root(None, cwd=ROOT)
示例#8
0
 def test_specified(self):
     os.chdir(PROJECT_PARENT)
     assert FILES == _find_root(FILES)