(self)
| 158 | |
| 159 | @unittest.expectedFailure # TODO: RUSTPYTHON |
| 160 | def test_raw_released(self): |
| 161 | pb = PickleBuffer(b"foo") |
| 162 | pb.release() |
| 163 | with self.assertRaises(ValueError) as raises: |
| 164 | pb.raw() |
| 165 | |
| 166 | |
| 167 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected