()
| 183 | |
| 184 | |
| 185 | def test_update_two_args(): |
| 186 | a = pm.eval("({'c':5})") |
| 187 | a.update(B='For', C='Geeks') |
| 188 | assert a == {'c': 5.0, 'B': 'For', 'C': 'Geeks'} |
| 189 | |
| 190 | |
| 191 | def test_update_iterable(): |
nothing calls this directly
no outgoing calls
no test coverage detected