Add DEVELOPMENT.md and SECURITY.md, add test suite

This commit is contained in:
2026-06-28 09:45:17 +01:00
parent 13c354c677
commit 2dfa2c662b
6 changed files with 1181 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
from __future__ import annotations
from pathlib import Path
import pytest
from filedust import junk
@pytest.fixture
def fake_home(tmp_path, monkeypatch):
home = tmp_path / "home"
home.mkdir()
monkeypatch.setattr(Path, "home", lambda: home)
monkeypatch.setattr(junk, "HOME", home.resolve())
return home