(self)
| 52 | ) |
| 53 | |
| 54 | def test_text_masked(self): |
| 55 | self.assertFrameData( |
| 56 | Frame(OP_TEXT, b"Spam"), |
| 57 | b"\x81\x84\x5b\xfb\xe1\xa8\x08\x8b\x80\xc5", |
| 58 | mask=True, |
| 59 | ) |
| 60 | |
| 61 | def test_binary_unmasked(self): |
| 62 | self.assertFrameData( |
nothing calls this directly
no test coverage detected