()
| 1089 | |
| 1090 | |
| 1091 | def test_str_empty_split(): |
| 1092 | b = db.from_sequence(["Alice Smith", "Bob Jones", "Charlie Smith"], npartitions=2) |
| 1093 | assert list(b.str.split()) == [ |
| 1094 | ["Alice", "Smith"], |
| 1095 | ["Bob", "Jones"], |
| 1096 | ["Charlie", "Smith"], |
| 1097 | ] |
| 1098 | |
| 1099 | |
| 1100 | def test_map_with_iterator_function(): |
nothing calls this directly
no test coverage detected
searching dependent graphs…