()
| 387 | |
| 388 | |
| 389 | def test_from_map_string_conversion(): |
| 390 | result = from_map(func_object, ["foo"]) |
| 391 | dtype = "string" if pyarrow_strings_enabled() else "object" |
| 392 | assert result.a.dtype == dtype |
| 393 | assert result.a.compute().dtype == dtype |
| 394 | |
| 395 | |
| 396 | def test_from_array(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…