Return a mapping object with the values contained in data dictionary
(self, data)
| 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""" |
| 25 | return self.type2test(data) |
| 26 | |
| 27 | def __init__(self, *args, **kw): |
| 28 | unittest.TestCase.__init__(self, *args, **kw) |