()
| 49 | |
| 50 | |
| 51 | def test_unordered_urlpath_errors(): |
| 52 | # Unordered urlpath argument |
| 53 | with pytest.raises(TypeError): |
| 54 | read_bytes( |
| 55 | { |
| 56 | "sets/are.csv", |
| 57 | "unordered/so/they.csv", |
| 58 | "should/not/be.csv", |
| 59 | "allowed.csv", |
| 60 | } |
| 61 | ) |
| 62 | |
| 63 | |
| 64 | def test_read_bytes(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…