()
| 473 | |
| 474 | |
| 475 | def test_insert_function(): |
| 476 | def f(): |
| 477 | return |
| 478 | a = pm.eval("[1,2]") |
| 479 | a.insert(0, f) |
| 480 | assert len(a) == 3 |
| 481 | |
| 482 | |
| 483 | def test_insert_int_neg_index(): |
nothing calls this directly
no outgoing calls
no test coverage detected