()
| 440 | |
| 441 | |
| 442 | def test_roundtrip_randsize(): |
| 443 | for arr in basic_arrays + record_arrays: |
| 444 | if arr.dtype != object: |
| 445 | arr2 = roundtrip_randsize(arr) |
| 446 | assert_array_equal(arr, arr2) |
| 447 | |
| 448 | |
| 449 | def test_roundtrip_truncated(): |
nothing calls this directly
no test coverage detected