MCPcopy
hub / github.com/pandas-dev/pandas / test_http_path

Method test_http_path

pandas/tests/io/test_feather.py:161–167  ·  view source on GitHub ↗
(self, feather_file, httpserver)

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 2

read_featherFunction · 0.90
readMethod · 0.45

Tested by

no test coverage detected