(self)
| 705 | d1 == d2 |
| 706 | |
| 707 | def test_keys_contained(self): |
| 708 | self.helper_keys_contained(lambda x: x.keys()) |
| 709 | self.helper_keys_contained(lambda x: x.items()) |
| 710 | |
| 711 | def helper_keys_contained(self, fn): |
| 712 | # Test rich comparisons against dict key views, which should behave the |
nothing calls this directly
no test coverage detected