()
| 456 | |
| 457 | |
| 458 | def test_items_substract(): |
| 459 | car = pm.eval('({"brand": "Ford","model": "Mustang","year": 1964})') |
| 460 | a = car.items() |
| 461 | b = a - [('brand', 'Ford')] |
| 462 | assert b == {('model', 'Mustang'), ('year', 1964.0)} |
| 463 | |
| 464 | |
| 465 | def test_items_or(): |
nothing calls this directly
no outgoing calls
no test coverage detected