(self)
| 277 | self.assertEqual(self._box.get_bytes(key1), _bytes_sample_message) |
| 278 | |
| 279 | def test_get_string(self): |
| 280 | # Get string representations of messages |
| 281 | key0 = self._box.add(self._template % 0) |
| 282 | key1 = self._box.add(_sample_message) |
| 283 | self.assertEqual(self._box.get_string(key0), self._template % 0) |
| 284 | self.assertEqual(self._box.get_string(key1).split('\n'), |
| 285 | _sample_message.split('\n')) |
| 286 | |
| 287 | def test_get_file(self): |
| 288 | # Get file representations of messages |
nothing calls this directly
no test coverage detected