(tmp_dir, dvc)
| 27 | |
| 28 | |
| 29 | def test_exists(tmp_dir, dvc): |
| 30 | tmp_dir.gen("foo", "foo") |
| 31 | dvc.add("foo") |
| 32 | (tmp_dir / "foo").unlink() |
| 33 | |
| 34 | fs = DataFileSystem(index=dvc.index.data["repo"]) |
| 35 | assert fs.exists("foo") |
| 36 | |
| 37 | |
| 38 | def test_open(tmp_dir, dvc): |
nothing calls this directly
no test coverage detected