()
| 450 | |
| 451 | |
| 452 | def test_items_repr(): |
| 453 | car = pm.eval('({"brand": "Ford","model": "Mustang","year": 1964})') |
| 454 | a = car.items() |
| 455 | assert str(a) == "dict_items([('brand', 'Ford'), ('model', 'Mustang'), ('year', 1964.0)])" |
| 456 | |
| 457 | |
| 458 | def test_items_substract(): |
nothing calls this directly
no outgoing calls
no test coverage detected