()
| 501 | |
| 502 | |
| 503 | def test_items_len(): |
| 504 | dishes = pm.eval("({'eggs': 2, 'sausage': 1, 'bacon': 1, 'spam': 500})") |
| 505 | items = dishes.items() |
| 506 | assert len(items) == 4 |
| 507 | |
| 508 | # TODO tuple support |
| 509 | # def test_items_contains(): |
nothing calls this directly
no outgoing calls
no test coverage detected