Return an empty mapping object
(self)
| 17 | in the object under test.""" |
| 18 | return {"1": "2", "key1":"value1", "key2":(1,2,3)} |
| 19 | def _empty_mapping(self): |
| 20 | """Return an empty mapping object""" |
| 21 | return self.type2test() |
| 22 | def _full_mapping(self, data): |
| 23 | """Return a mapping object with the values contained in data |
| 24 | dictionary""" |
no test coverage detected