Decode to bytes
(self, decode_this, expected)
| 36 | return x |
| 37 | |
| 38 | def decode_bytes(self, decode_this, expected): |
| 39 | """ Decode to bytes""" |
| 40 | self.assertEqual(PdfString(decode_this).to_bytes(), |
| 41 | convert_store(expected)) |
| 42 | |
| 43 | def roundtrip(self, value, expected=None): |
| 44 | result = self.encode(value) |
no test coverage detected