(native_str: str)
| 803 | |
| 804 | def test_slice_of_split(): |
| 805 | def impl(native_str: str): |
| 806 | native_split = native_str.split() |
| 807 | text = sz.Str(native_str) |
| 808 | sz_split = text.split() |
| 809 | for slice_idx in range(len(native_split)): |
| 810 | assert str(sz_split[slice_idx]) == native_split[slice_idx] |
| 811 | |
| 812 | native_str = "Weebles wobble before they fall down, don't they?" |
| 813 | impl(native_str) |
no test coverage detected
searching dependent graphs…