(self)
| 1787 | 'c': [3, 6]}]) |
| 1788 | |
| 1789 | def test_empty_file(self): |
| 1790 | with pytest.raises(ValueError, match="Empty CSV file"): |
| 1791 | self.open_bytes(b"") |
| 1792 | |
| 1793 | def test_column_options(self): |
| 1794 | # With column_names |
nothing calls this directly
no test coverage detected