(dir_server)
| 159 | |
| 160 | |
| 161 | def test_files(dir_server): |
| 162 | root = "http://localhost:8999/" |
| 163 | fs = open_files([f"{root}{f}" for f in files]) |
| 164 | for f, f2 in zip(fs, files): |
| 165 | with f as f: |
| 166 | with open(os.path.join(dir_server, f2), "rb") as expected: |
| 167 | assert f.read() == expected.read() |
| 168 | |
| 169 | |
| 170 | def test_open_glob(dir_server): |
nothing calls this directly
no test coverage detected
searching dependent graphs…