()
| 308 | |
| 309 | |
| 310 | def test_keys_xor(): |
| 311 | dishes = pm.eval("({'eggs': 2, 'sausage': 1, 'bacon': 1, 'spam': 500})") |
| 312 | keys = dishes.keys() |
| 313 | others = keys ^ {'sausage', 'juice'} |
| 314 | assert others == {'bacon', 'spam', 'juice', 'eggs'} |
| 315 | |
| 316 | |
| 317 | def test_keys_len(): |
nothing calls this directly
no outgoing calls
no test coverage detected