(seq)
| 430 | |
| 431 | @parametrize_with_sequence_types |
| 432 | def test_sequence_custom_integers(seq): |
| 433 | expected = [0, 42, 2**33 + 1, -2**63] |
| 434 | data = list(map(MyInt, expected)) |
| 435 | arr = pa.array(seq(data), type=pa.int64()) |
| 436 | assert arr.to_pylist() == expected |
| 437 | |
| 438 | |
| 439 | @parametrize_with_collections_types |