()
| 128 | |
| 129 | |
| 130 | def test_with_urls(): |
| 131 | with filetexts(files, mode="b"): |
| 132 | # OS-independent file:// URI with glob * |
| 133 | url = to_uri(".test.accounts.") + "*" |
| 134 | sample, values = read_bytes(url, blocksize=None) |
| 135 | assert sum(map(len, values)) == len(files) |
| 136 | |
| 137 | |
| 138 | @pytest.mark.skipif(sys.platform == "win32", reason="pathlib and moto clash on windows") |
nothing calls this directly
no test coverage detected
searching dependent graphs…