()
| 949 | |
| 950 | |
| 951 | def iter_for(): |
| 952 | a = pm.eval("(['this is a test', 'another test'])") |
| 953 | b = [item.upper() for item in a] |
| 954 | assert b == ['THIS IS A TEST', 'ANOTHER TEST'] |
| 955 | |
| 956 | |
| 957 | def test_reduce(): |
nothing calls this directly
no outgoing calls
no test coverage detected