9 lines
191 B
Python
9 lines
191 B
Python
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)
|