(self)
| 1717 | 'c': [3, 6]}]) |
| 1718 | |
| 1719 | def test_empty_file(self): |
| 1720 | with pytest.raises(ValueError, match="Empty CSV file"): |
| 1721 | self.open_bytes(b"") |
| 1722 | |
| 1723 | def test_column_options(self): |
| 1724 | # With column_names |
nothing calls this directly
no test coverage detected