(self, tmp_path)
| 122 | assert (tmp_path / ".code-review-graph").is_dir() |
| 123 | |
| 124 | def test_creates_gitignore(self, tmp_path): |
| 125 | get_db_path(tmp_path) |
| 126 | gi = tmp_path / ".code-review-graph" / ".gitignore" |
| 127 | assert gi.exists() |
| 128 | assert "*\n" in gi.read_text() |
| 129 | |
| 130 | def test_migrates_legacy_db(self, tmp_path): |
| 131 | legacy = tmp_path / ".code-review-graph.db" |
nothing calls this directly
no test coverage detected