(self, cloud)
| 306 | assert (tmp_dir / dname / "foo").read_text() == "foo contents" |
| 307 | |
| 308 | def test_get_url_nonexistent(self, cloud): |
| 309 | with pytest.raises(URLMissingError): |
| 310 | Repo.get_url(str(cloud / "nonexistent"), fs_config=cloud.config) |
| 311 | |
| 312 | |
| 313 | class TestToRemote: |