(self, tmp_path)
| 85 | storage.store(file) |
| 86 | |
| 87 | def test_append(self, tmp_path): |
| 88 | path = tmp_path / "file.txt" |
| 89 | self._store(path) |
| 90 | self._assert_stores(FileFeedStorage(str(path)), path, b"contentcontent") |
| 91 | |
| 92 | def test_overwrite(self, tmp_path): |
| 93 | path = tmp_path / "file.txt" |
nothing calls this directly
no test coverage detected