(root: Path)
| 108 | |
| 109 | |
| 110 | def _make_docs_website_tree(root: Path) -> None: |
| 111 | fern = root / "fern" |
| 112 | fern.mkdir(parents=True) |
| 113 | (fern / "docs.yml").write_text(yaml.safe_dump({"versions": []}), encoding="utf-8") |
| 114 | |
| 115 | |
| 116 | def test_sync_docs_creates_snapshot(tmp_path: Path) -> None: |
no outgoing calls
no test coverage detected