()
| 235 | |
| 236 | |
| 237 | def test_keys_substract(): |
| 238 | car = pm.eval('({"brand": "Ford","model": "Mustang","year": 1964})') |
| 239 | a = car.keys() |
| 240 | b = a - ['brand'] |
| 241 | assert b == {'model', 'year'} |
| 242 | |
| 243 | |
| 244 | def test_keys_richcompare_two_own(): |
nothing calls this directly
no outgoing calls
no test coverage detected