()
| 135 | |
| 136 | |
| 137 | def test_indented_string_format(): |
| 138 | arr = pa.array(['', None, 'foo']) |
| 139 | result = arr.to_string(indent=1) |
| 140 | expected = '[\n "",\n null,\n "foo"\n]' |
| 141 | |
| 142 | assert result == expected |
| 143 | |
| 144 | |
| 145 | def test_top_level_indented_string_format(): |