(self, df, exc, err_msg, temp_file)
| 27 | @pytest.mark.single_cpu |
| 28 | class TestFeather: |
| 29 | def check_error_on_write(self, df, exc, err_msg, temp_file): |
| 30 | # check that we are raising the exception |
| 31 | # on writing |
| 32 | |
| 33 | with pytest.raises(exc, match=err_msg): |
| 34 | to_feather(df, temp_file) |
| 35 | |
| 36 | def check_external_error_on_write(self, df, temp_file): |
| 37 | # check that we are raising the exception |
no test coverage detected