(self, feather_file, httpserver)
| 159 | @pytest.mark.network |
| 160 | @pytest.mark.single_cpu |
| 161 | def test_http_path(self, feather_file, httpserver): |
| 162 | # GH 29055 |
| 163 | expected = read_feather(feather_file) |
| 164 | with open(feather_file, "rb") as f: |
| 165 | httpserver.serve_content(content=f.read()) |
| 166 | res = read_feather(httpserver.url) |
| 167 | tm.assert_frame_equal(expected, res) |
| 168 | |
| 169 | def test_read_feather_dtype_backend( |
| 170 | self, string_storage, dtype_backend, using_infer_string, temp_file |
nothing calls this directly
no test coverage detected