()
| 229 | |
| 230 | |
| 231 | def test_keys_repr(): |
| 232 | car = pm.eval('({"brand": "Ford","model": "Mustang","year": 1964})') |
| 233 | a = car.keys() |
| 234 | assert str(a) == "dict_keys(['brand', 'model', 'year'])" |
| 235 | |
| 236 | |
| 237 | def test_keys_substract(): |
nothing calls this directly
no outgoing calls
no test coverage detected