(self)
| 134 | assert mpint2r(self._b('00 00 00 02 ff 80')) == -0x80 |
| 135 | |
| 136 | def test_reset(self): |
| 137 | w = self.wbuf() |
| 138 | w.write_int(7) |
| 139 | w.write_int(13) |
| 140 | assert len(w.write_flush()) == 8 |
| 141 | |
| 142 | w.write_int(7) |
| 143 | w.write_int(13) |
| 144 | w.reset() |
| 145 | assert len(w.write_flush()) == 0 |
nothing calls this directly
no test coverage detected