(self)
| 59 | ) |
| 60 | |
| 61 | def test_binary_unmasked(self): |
| 62 | self.assertFrameData( |
| 63 | Frame(OP_BINARY, b"Eggs"), |
| 64 | b"\x82\x04Eggs", |
| 65 | mask=False, |
| 66 | ) |
| 67 | |
| 68 | def test_binary_masked(self): |
| 69 | self.assertFrameData( |
nothing calls this directly
no test coverage detected