(self)
| 338 | self.assertEqual(list(d.values()), [2]) |
| 339 | |
| 340 | def test_items(self): |
| 341 | BasicTestMappingProtocol.test_items(self) |
| 342 | |
| 343 | d = self._full_mapping({1:2}) |
| 344 | self.assertEqual(list(d.items()), [(1, 2)]) |
| 345 | |
| 346 | def test_contains(self): |
| 347 | d = self._empty_mapping() |
nothing calls this directly
no test coverage detected