()
| 849 | |
| 850 | |
| 851 | def test_sort_strings(): |
| 852 | items = ['Four', 'Three', 'One'] |
| 853 | pm.eval("(arr) => {arr.sort()}")(items) |
| 854 | assert items == ['Four', 'One', 'Three'] |
| 855 | |
| 856 | |
| 857 | def test_sort_with_two_args_keyfunc(): |
nothing calls this directly
no outgoing calls
no test coverage detected