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