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