Add tests for output.Output and output.File

This commit is contained in:
2026-09-03 02:55:38 +02:00
parent 088fc4d463
commit 2835b77146
3 changed files with 73 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
import pytest
from omicron.ssg.site import Site
@pytest.fixture
def thin_site(tmp_path):
(tmp_path / "config.yml").write_text("name: test\ntemplate: plain\n")
return Site(tmp_path)