forked from p15670423/monkey
Tests: Fix failing expand_path() tests
This commit is contained in:
parent
8dd1aa25ac
commit
5ac574bd17
|
@ -3,15 +3,15 @@ import os
|
|||
from common.utils.file_utils import expand_path
|
||||
|
||||
|
||||
def test_expand_user(mock_home_env):
|
||||
def test_expand_user(patched_home_env):
|
||||
input_path = os.path.join("~", "test")
|
||||
expected_path = os.path.join(mock_home_env, "test")
|
||||
expected_path = os.path.join(patched_home_env, "test")
|
||||
|
||||
assert expand_path(input_path) == expected_path
|
||||
|
||||
|
||||
def test_expand_vars(mock_home_env):
|
||||
def test_expand_vars(patched_home_env):
|
||||
input_path = os.path.join("$HOME", "test")
|
||||
expected_path = os.path.join(mock_home_env, "test")
|
||||
expected_path = os.path.join(patched_home_env, "test")
|
||||
|
||||
assert expand_path(input_path) == expected_path
|
||||
|
|
|
@ -0,0 +1,8 @@
|
|||
import pytest
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def patched_home_env(monkeypatch, tmpdir):
|
||||
monkeypatch.setenv("HOME", str(tmpdir))
|
||||
|
||||
return tmpdir
|
|
@ -9,13 +9,6 @@ def server_configs_dir(data_for_tests_dir):
|
|||
return os.path.join(data_for_tests_dir, "server_configs")
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def patched_home_env(monkeypatch, tmpdir):
|
||||
monkeypatch.setenv("HOME", str(tmpdir))
|
||||
|
||||
return tmpdir
|
||||
|
||||
|
||||
@pytest.fixture
|
||||
def create_empty_tmp_file(tmpdir: str) -> Callable:
|
||||
def inner(file_name: str):
|
||||
|
|
Loading…
Reference in New Issue