(self, f)
| 153 | |
| 154 | |
| 155 | def read_helper(self, f): |
| 156 | keys = self.keys_helper(f) |
| 157 | for key in self._dict: |
| 158 | self.assertEqual(self._dict[key], f[key]) |
| 159 | |
| 160 | def init_db(self): |
| 161 | with contextlib.closing(dumbdbm.open(_fname, 'n')) as f: |
no test coverage detected