()
| 78 | |
| 79 | |
| 80 | def test_read_bytes_sample_delimiter(): |
| 81 | with filetexts(files, mode="b"): |
| 82 | sample, values = read_bytes(".test.accounts.*", sample=80, delimiter=b"\n") |
| 83 | assert sample.endswith(b"\n") |
| 84 | sample, values = read_bytes(".test.accounts.1.json", sample=80, delimiter=b"\n") |
| 85 | assert sample.endswith(b"\n") |
| 86 | sample, values = read_bytes(".test.accounts.1.json", sample=2, delimiter=b"\n") |
| 87 | assert sample.endswith(b"\n") |
| 88 | |
| 89 | |
| 90 | def test_parse_sample_bytes(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…