コード例 #1
0
def get_working_path(working_path_name):
    """Returns the working path"""
    return os.path.join(Configuration.get_working_path(), working_path_name)
コード例 #2
0
ファイル: test_config.py プロジェクト: Kenny407/nestor-api
def test_get_working_path_default():
    assert Configuration.get_working_path() == "/tmp/nestor/work"
コード例 #3
0
 def test_get_working_path_default(self):
     self.assertEqual(Configuration.get_working_path(), "/tmp/nestor/work")
コード例 #4
0
ファイル: test_config.py プロジェクト: Kenny407/nestor-api
def test_get_working_path_configured(monkeypatch):
    monkeypatch.setenv("NESTOR_WORK_PATH", "/a-custom-working-path")

    assert Configuration.get_working_path() == "/a-custom-working-path"
コード例 #5
0
 def test_get_working_path_configured(self):
     self.assertEqual(Configuration.get_working_path(),
                      "/a-custom-working-path")