()
| 453 | |
| 454 | |
| 455 | def test_long_str(): |
| 456 | # check items larger than internal buffer size, gh-4027 |
| 457 | long_str_arr = np.ones(1, dtype=np.dtype((str, format.BUFFER_SIZE + 1))) |
| 458 | long_str_arr2 = roundtrip(long_str_arr) |
| 459 | assert_array_equal(long_str_arr, long_str_arr2) |
| 460 | |
| 461 | |
| 462 | @pytest.mark.skipif(IS_WASM, reason="memmap doesn't work correctly") |
nothing calls this directly
no test coverage detected