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