working version

This commit is contained in:
2026-02-13 12:15:46 +02:00
parent 1217337fbb
commit 6cff65f288
37 changed files with 2232 additions and 1872 deletions

View File

@@ -18,15 +18,15 @@ from flow.core.paths import (
def test_config_dir_under_home():
assert ".config/devflow" in str(CONFIG_DIR)
assert ".config/flow" in str(CONFIG_DIR)
def test_data_dir_under_home():
assert ".local/share/devflow" in str(DATA_DIR)
assert ".local/share/flow" in str(DATA_DIR)
def test_state_dir_under_home():
assert ".local/state/devflow" in str(STATE_DIR)
assert ".local/state/flow" in str(STATE_DIR)
def test_manifest_file_in_config_dir():
@@ -34,7 +34,7 @@ def test_manifest_file_in_config_dir():
def test_config_file_in_config_dir():
assert CONFIG_FILE == CONFIG_DIR / "config"
assert CONFIG_FILE == CONFIG_DIR / "config.yaml"
def test_dotfiles_dir():