(self)
| 1462 | assert _recursive_sequence_map(sqrt, [4, 16, 25, 676]) == [2, 4, 5, 26] |
| 1463 | |
| 1464 | def test_map_over_tuple(self): |
| 1465 | assert _recursive_sequence_map(sqrt, (4, 16, 25, 676)) == (2, 4, 5, 26) |
| 1466 | |
| 1467 | def test_map_over_nested_lists(self): |
| 1468 | assert _recursive_sequence_map(sqrt, [4, [25, 64], [[49]]]) == [ |
nothing calls this directly
no test coverage detected