(dir_server)
| 53 | |
| 54 | |
| 55 | def test_simple(dir_server): |
| 56 | root = "http://localhost:8999/" |
| 57 | fn = files[0] |
| 58 | f = open_files(root + fn)[0] |
| 59 | with f as f: |
| 60 | data = f.read() |
| 61 | with open(os.path.join(dir_server, fn), "rb") as expected: |
| 62 | assert data == expected.read() |
| 63 | |
| 64 | |
| 65 | def test_loc(dir_server): |
nothing calls this directly
no test coverage detected
searching dependent graphs…