(self, df, engine, exc, temp_file_path)
| 384 | to_parquet(df, temp_file_path, engine, compression=None) |
| 385 | |
| 386 | def check_external_error_on_write(self, df, engine, exc, temp_file_path): |
| 387 | # check that an external library is raising the exception on writing |
| 388 | with tm.external_error_raised(exc): |
| 389 | to_parquet(df, temp_file_path, engine, compression=None) |
| 390 | |
| 391 | |
| 392 | class TestBasic(Base): |
no test coverage detected