Return a mapping object with the values contained in data dictionary
(self, data)
| 144 | |
| 145 | class BasicTestMappingProtocol(BasicTestImmutableMappingProtocol): |
| 146 | def _full_mapping(self, data): |
| 147 | """Return a mapping object with the values contained in data |
| 148 | dictionary""" |
| 149 | x = self._empty_mapping() |
| 150 | for key, value in data.items(): |
| 151 | x[key] = value |
| 152 | return x |
| 153 | |
| 154 | def test_write(self): |
| 155 | # Test for write operations on mapping |
no test coverage detected